forked from tonioni/WinUAE
-
Notifications
You must be signed in to change notification settings - Fork 0
108 lines (86 loc) · 3.29 KB
/
build-winuae-binary.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: Build WinUAE binary
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master
env:
SOLUTION_FILE_PATH: od-win32\\winuae_msvc15
jobs:
Build-WinUAE-32bit-binary:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
# Running roughly step 4 of README.md
- name: Download WinUAE includes and libs
shell: powershell
run: Invoke-WebRequest -Uri "https://download.abime.net/winuae/files/b/winuaeinclibs.zip" -OutFile "winuaeinclibs.zip"
- name: Unpack WinUAE includes and libs to C:\\dev
uses: ihiroky/extract-action@v1
with:
file_path: winuaeinclibs.zip
extract_dir: C:\\dev
# Running roughly step 6 of README.md
- name: Download AROS ROM cpp
shell: powershell
run: Invoke-WebRequest -Uri "https://download.abime.net/winuae/files/b/aros.rom.cpp.zip" -OutFile "aros.rom.cpp.zip"
- name: Unpack AROS ROM cpp
uses: ihiroky/extract-action@v1
with:
file_path: aros.rom.cpp.zip
extract_dir: .
# Running roughly step 7 of README.md
- name: Add NASM to PATH
uses: ilammy/[email protected]
# Running roughly step 12 of README.md
- name: Build Win32 FullRelease
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Platform=Win32 /p:Configuration=FullRelease ${{env.SOLUTION_FILE_PATH}}
- uses: actions/upload-artifact@v4
with:
name: WinUAE 32-bit
path: D:\\Amiga
Build-WinUAE-64bit-binary:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
# Running roughly step 4 of README.md
- name: Download WinUAE includes and libs
shell: powershell
run: Invoke-WebRequest -Uri "https://download.abime.net/winuae/files/b/winuaeinclibs.zip" -OutFile "winuaeinclibs.zip"
- name: Unpack WinUAE includes and libs to C:\\dev
uses: ihiroky/extract-action@v1
with:
file_path: winuaeinclibs.zip
extract_dir: C:\\dev
# Running roughly step 6 of README.md
- name: Download AROS ROM cpp
shell: powershell
run: Invoke-WebRequest -Uri "https://download.abime.net/winuae/files/b/aros.rom.cpp.zip" -OutFile "aros.rom.cpp.zip"
- name: Unpack AROS ROM cpp
uses: ihiroky/extract-action@v1
with:
file_path: aros.rom.cpp.zip
extract_dir: .
# Running roughly step 7 of README.md
- name: Add NASM to PATH
uses: ilammy/[email protected]
# Running roughly step 12 of README.md
- name: Build x64 FullRelease
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Platform=x64 /p:Configuration=FullRelease ${{env.SOLUTION_FILE_PATH}}
- uses: actions/upload-artifact@v4
with:
name: WinUAE 64-bit
path: D:\\Amiga