forked from higan-emu/higan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
197 lines (163 loc) · 6.94 KB
/
.cirrus.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
linux-x86_64-binaries_task:
container:
image: ubuntu:latest
setup_script:
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl libgtk2.0-dev libpulse-dev mesa-common-dev libgtksourceview2.0-dev libcairo2-dev libsdl2-dev libxv-dev libao-dev libopenal-dev libudev-dev zip
matrix:
- build_higan_script:
- make -C higan-ui profile=accuracy build=performance local=false
- make -C icarus
package_higan_script:
- mkdir higan-nightly
- cp -a higan-ui/out/higan-ui higan-nightly/higan-ui
- cp -a higan/System higan-nightly
- cp -a icarus/out/icarus higan-nightly/icarus
- cp -a icarus/Database higan-nightly
- cp -a icarus/Firmware higan-nightly
- cp -a GPLv3.txt higan-nightly
- cp -a extras/higan/* higan-nightly
- cp -a extras/both/* higan-nightly
- zip -r higan-nightly.zip higan-nightly
matrix:
- only_if: $CIRRUS_RELEASE != ""
environment:
OS: linux-x86_64
GITHUB_TOKEN: ENCRYPTED[7a134a5ab55ae4be1e91c44040969d89e5f4017e2d71f4f03fbde21e136085b6f366c33e0bbcc2d2c6d23914a149aa66]
upload_script: ./.cirrus.upload.sh
- only_if: $CIRRUS_RELEASE == ""
higan-nightly_artifacts:
path: "higan-nightly.zip"
- build_byuu_script:
- make -C byuu profile=performance build=performance local=false
package_byuu_script:
- mkdir byuu-nightly
- mkdir byuu-nightly/Firmware
- cp -a byuu/out/byuu byuu-nightly/byuu
- cp -a GPLv3.txt byuu-nightly
- cp -a extras/byuu/* byuu-nightly
- cp -a extras/both/* byuu-nightly
- zip -r byuu-nightly.zip byuu-nightly
byuu-nightly_artifacts:
path: "byuu-nightly.zip"
freebsd-x86_64-binaries_task:
freebsd_instance:
image: freebsd-12-1-release-amd64
setup_script:
- pkg install --yes curl gmake gdb gcc8 pkgconf sdl2 openal-soft gtksourceview2 libXv zip
matrix:
- build_higan_script:
- gmake -C higan-ui profile=accuracy build=performance local=false
- gmake -C icarus
package_higan_script:
- mkdir higan-nightly
- cp -a higan-ui/out/higan-ui higan-nightly/higan-ui
- cp -a higan/System higan-nightly
- cp -a icarus/out/icarus higan-nightly/icarus
- cp -a icarus/Database higan-nightly
- cp -a icarus/Firmware higan-nightly
- cp -a GPLv3.txt higan-nightly
- cp -a extras/higan/* higan-nightly
- cp -a extras/both/* higan-nightly
- zip -r higan-nightly.zip higan-nightly
matrix:
- only_if: $CIRRUS_RELEASE != ""
environment:
OS: freebsd-x86_64
GITHUB_TOKEN: ENCRYPTED[7a134a5ab55ae4be1e91c44040969d89e5f4017e2d71f4f03fbde21e136085b6f366c33e0bbcc2d2c6d23914a149aa66]
upload_script: ./.cirrus.upload.sh
- only_if: $CIRRUS_RELEASE == ""
higan-nightly_artifacts:
path: "higan-nightly.zip"
- build_higan_script:
- gmake -C byuu profile=performance build=performance local=false
package_byuu_script:
- mkdir byuu-nightly
- mkdir byuu-nightly/Firmware
- cp -a byuu/out/byuu byuu-nightly/byuu
- cp -a GPLv3.txt byuu-nightly
- cp -a extras/byuu/* byuu-nightly
- cp -a extras/both/* byuu-nightly
- zip -r byuu-nightly.zip byuu-nightly
byuu-nightly_artifacts:
path: "byuu-nightly.zip"
windows-x86_64-binaries_task:
container:
image: ubuntu:latest
setup_script:
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl mingw-w64 zip
matrix:
- build_higan_script:
- make -C higan-ui profile=accuracy build=performance local=false platform=windows compiler="x86_64-w64-mingw32-g++" windres="x86_64-w64-mingw32-windres"
- make -C icarus platform=windows compiler="x86_64-w64-mingw32-g++" windres="x86_64-w64-mingw32-windres"
package_higan_script:
- mkdir higan-nightly
- cp -a higan-ui/out/higan-ui.exe higan-nightly/higan-ui.exe
- cp -a icarus/out/icarus.exe higan-nightly/icarus.exe
- cp -a higan/System higan-nightly/Templates
- mkdir higan-nightly/Systems
- cp -a icarus/Database higan-nightly
- cp -a icarus/Firmware higan-nightly
- cp -a GPLv3.txt higan-nightly
- cp -a extras/higan/* higan-nightly
- cp -a extras/both/* higan-nightly
- zip -r higan-nightly.zip higan-nightly
matrix:
- only_if: $CIRRUS_RELEASE != ""
environment:
OS: windows-x86_64
GITHUB_TOKEN: ENCRYPTED[7a134a5ab55ae4be1e91c44040969d89e5f4017e2d71f4f03fbde21e136085b6f366c33e0bbcc2d2c6d23914a149aa66]
upload_script: ./.cirrus.upload.sh
- only_if: $CIRRUS_RELEASE == ""
higan-nightly_artifacts:
path: "higan-nightly.zip"
- build_byuu_script:
- make -C byuu profile=performance build=performance local=false platform=windows compiler="x86_64-w64-mingw32-g++" windres="x86_64-w64-mingw32-windres"
package_byuu_script:
- mkdir byuu-nightly
- mkdir byuu-nightly/Firmware
- cp -a byuu/out/byuu.exe byuu-nightly/byuu.exe
- cp -a GPLv3.txt byuu-nightly
- cp -a extras/byuu/* byuu-nightly
- cp -a extras/both/* byuu-nightly
- zip -r byuu-nightly.zip byuu-nightly
byuu-nightly_artifacts:
path: "byuu-nightly.zip"
macOS-x86_64-binaries_task:
osx_instance:
image: mojave-base
matrix:
- build_higan_script:
- make -C higan-ui profile=accuracy build=performance local=false
- make -C icarus
package_higan_script:
- mkdir higan-nightly
- cp -a higan-ui/out/higan-ui.app higan-nightly
- cp -a higan/System higan-nightly
- cp -a icarus/out/icarus.app higan-nightly
- cp -a icarus/Database higan-nightly
- cp -a icarus/Firmware higan-nightly
- cp -a GPLv3.txt higan-nightly
- cp -a extras/higan/* higan-nightly
- cp -a extras/both/* higan-nightly
- zip -r higan-nightly.zip higan-nightly
matrix:
- only_if: $CIRRUS_RELEASE != ""
environment:
OS: macOS-x86_64
GITHUB_TOKEN: ENCRYPTED[7a134a5ab55ae4be1e91c44040969d89e5f4017e2d71f4f03fbde21e136085b6f366c33e0bbcc2d2c6d23914a149aa66]
upload_script: ./.cirrus.upload.sh
- only_if: $CIRRUS_RELEASE == ""
higan-nightly_artifacts:
path: "higan-nightly.zip"
- build_byuu_script:
- make -C byuu profile=performance build=performance local=false
package_byuu_script:
- mkdir byuu-nightly
- mkdir byuu-nightly/Firmware
- cp -a byuu/out/byuu.app byuu-nightly
- cp -a GPLv3.txt byuu-nightly
- cp -a extras/byuu/* byuu-nightly
- cp -a extras/both/* byuu-nightly
- zip -r byuu-nightly.zip byuu-nightly
byuu-nightly_artifacts:
path: "byuu-nightly.zip"