-
-
Notifications
You must be signed in to change notification settings - Fork 6
276 lines (245 loc) · 8.95 KB
/
build_addon.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
name: build_gde_gozen
run-name: Building addon/test_room
on:
workflow_dispatch:
inputs:
version:
description: 'Addon version'
required: false
default: "4.0"
jobs:
build-linux:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: Installing dependencies
run: pacman -Syu --noconfirm git bash yasm python python-pip scons gcc diffutils make wget unzip tar ffmpeg
- name: Checkout submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Restore cached linux_debug
id: cache-linux-debug-restore
uses: actions/cache/restore@v4
with:
path: .scons-cache/
key: linux_debug
- name: Build Linux debug
run: scons -j4 target=template_debug platform=linux arch=x86_64 use_system=yes dev_build=yes
- name: Save cache linux_debug
id: cache-linux-debug-save
uses: actions/cache/save@v4
with:
path: .scons-cache/
key: ${{ steps.cache-linux-debug-restore.outputs.cache-primary-key }}
- name: Restore cached linux_release
id: cache-linux-release-restore
uses: actions/cache/restore@v4
with:
path: .scons-cache/
key: linux_release_addon
- name: Build Linux release
run: scons -j4 target=template_release platform=linux arch=x86_64 use_system=yes
- name: Save cache linux_release
id: cache-linux-release-save
uses: actions/cache/save@v4
with:
path: .scons-cache/
key: ${{ steps.cache-linux-release-restore.outputs.cache-primary-key }}
- name: Uploading binaries
uses: actions/upload-artifact@v4
with:
name: gde_gozen_linux_bin_v${{ inputs.version }}
path: bin/
retention-days: 1
build-linux-full:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: Installing dependencies
run: pacman -Syu --noconfirm git bash yasm python python-pip scons gcc diffutils make wget unzip tar ffmpeg
- name: Checkout submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Restore cached linux_full_debug
id: cache-linux-full-debug-restore
uses: actions/cache/restore@v4
with:
path: .scons-cache/
key: linux_full_debug_addon
- name: Build Linux full debug
run: scons -j4 target=template_debug platform=linux arch=x86_64 use_system=no dev_build=yes
- name: Save cache linux_full_debug
id: cache-linux-full-debug-save
uses: actions/cache/save@v4
with:
path: .scons-cache/
key: ${{ steps.cache-linux-full-debug-restore.outputs.cache-primary-key }}
- name: Restore cached linux_full_release
id: cache-linux-full-release-restore
uses: actions/cache/restore@v4
with:
path: .scons-cache/
key: linux_full_release_addon
- name: Build Linux full release
run: scons -j4 target=template_release platform=linux arch=x86_64 use_system=no recompile_ffmpeg=no
- name: Save cache linux_full_release
id: cache-linux-full-release-save
uses: actions/cache/save@v4
with:
path: .scons-cache/
key: ${{ steps.cache-linux-full-release-restore.outputs.cache-primary-key }}
- name: Uploading binaries
uses: actions/upload-artifact@v4
with:
name: gde_gozen_linux_full_bin_v${{ inputs.version }}
path: bin/
retention-days: 1
build-windows:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: Installing dependencies
run: pacman -Syu --noconfirm git bash yasm python python-pip scons gcc diffutils make wget unzip tar mingw-w64 ffmpeg
- name: Checkout submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Restore cached windows_debug
id: cache-windows-debug-restore
uses: actions/cache/restore@v4
with:
path: .scons-cache/
key: windows_debug_addon
- name: Build Windows debug
run: scons -j4 target=template_debug platform=windows arch=x86_64 dev_build=yes recompile_ffmpeg=yes
- name: Save cache windows_debug
id: cache-windows-debug-save
uses: actions/cache/save@v4
with:
path: .scons-cache/
key: ${{ steps.cache-windows-debug-restore.outputs.cache-primary-key }}
- name: Restore cached windows_release
id: cache-windows-release-restore
uses: actions/cache/restore@v4
with:
path: .scons-cache/
key: windows_release_addon
- name: Build Windows release
run: scons -j4 target=template_release platform=windows arch=x86_64 recompile_ffmpeg=no
- name: Save cache windows_release
id: cache-windows-release-save
uses: actions/cache/save@v4
with:
path: .scons-cache/
key: ${{ steps.cache-windows-release-restore.outputs.cache-primary-key }}
- name: Uploading binaries
uses: actions/upload-artifact@v4
with:
name: gde_gozen_windows_bin_v${{ inputs.version }}
path: bin/
retention-days: 1
build-macos:
runs-on: macos-latest
steps:
- name: Checkout submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Installing dependencies
run: |
brew update
brew install yasm scons diffutils make unzip ffmpeg
- name: Restore cached macos_debug
id: cache-macos-debug-restore
uses: actions/cache/restore@v4
with:
path: .scons-cache/
key: macos_debug
- name: Build MacOS debug
run: scons -j4 target=template_debug platform=macos arch=arm64 dev_build=yes recompile_ffmpeg=yes
- name: Save cache macos_debug
id: cache-macos-debug-save
uses: actions/cache/save@v4
with:
path: .scons-cache/
key: ${{ steps.cache-macos-debug-restore.outputs.cache-primary-key }}
- name: Restore cached macos_release
id: cache-macos-release-restore
uses: actions/cache/restore@v4
with:
path: .scons-cache/
key: macos_release
- name: Build MacOS release
run: scons -j4 target=template_release platform=macos arch=arm64 recompile_ffmpeg=no
- name: Save cache macos_release
id: cache-macos-release-save
uses: actions/cache/save@v4
with:
path: .scons-cache/
key: ${{ steps.cache-macos-release-restore.outputs.cache-primary-key }}
- name: Correct MacOS Binary paths
run: |
python macos_rpath_fix.py
otool -L bin/macos/debug/libgozen.macos.template_debug.dev.arm64.dylib
otool -L bin/macos/release/libgozen.macos.template_release.arm64.dylib
- name: Uploading binaries
uses: actions/upload-artifact@v4
with:
name: gde_gozen_macos_bin_v${{ inputs.version }}
path: bin/
retention-days: 1
build-addon:
needs: [build-linux, build-linux-full, build-windows, build-macos]
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: Installing dependencies
run: pacman -Syu --noconfirm git bash yasm python python-pip scons gcc diffutils make wget unzip tar ffmpeg
- name: Checkout submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Prepare linux artifacts
uses: actions/download-artifact@v4
with:
path: bin/
name: gde_gozen_linux_bin_v${{ inputs.version }}
- name: Prepare linux-full artifacts
uses: actions/download-artifact@v4
with:
path: bin/
name: gde_gozen_linux_full_bin_v${{ inputs.version }}
- name: Prepare windows artifacts
uses: actions/download-artifact@v4
with:
path: bin/
name: gde_gozen_windows_bin_v${{ inputs.version }}
- name: Prepare macos artifacts
uses: actions/download-artifact@v4
with:
path: bin/
name: gde_gozen_macos_bin_v${{ inputs.version }}
- name: Copying binaries + license
run: |
cp -r bin test_room/addons/gde_gozen/
cp LICENSE test_room/addons/gde_gozen/
- name: Updating version number
run: sed -i 's/^version="[^"]*"/version="${{ inputs.version }}"/' test_room/addons/gde_gozen/plugin.cfg
- name: Upload addon
uses: actions/upload-artifact@v4
with:
name: gde_gozen_v${{ inputs.version }}
path: test_room/addons/
retention-days: 1
- name: Upload test_room
uses: actions/upload-artifact@v4
with:
name: gde_gozen_test_room_v${{ inputs.version }}
path: test_room/
retention-days: 1