-
-
Notifications
You must be signed in to change notification settings - Fork 62
394 lines (346 loc) · 14.9 KB
/
export-optimized.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
name: export-optimized
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
# Which godot version to use for exporting.
GODOT_VERSION: 4.3
# Which godot release to use for exporting. (stable/rc/beta/alpha)
GODOT_RELEASE: stable
# Used in the editor config file name. Do not change this for patch releases.
GODOT_FEATURE_VERSION: 4.3
# Commit hash
GODOT_COMMIT_HASH: 77dcf97
PROJECT_NAME: GodSVG
GODOT_REPO: https://github.com/godotengine/godot.git
BUILD_OPTIONS: target=template_release lto=full production=yes deprecated=no minizip=no brotli=no vulkan=no openxr=no use_volk=no disable_3d=yes modules_enabled_by_default=no module_freetype_enabled=yes module_gdscript_enabled=yes module_svg_enabled=yes module_jpg_enabled=yes module_text_server_adv_enabled=yes graphite=no module_webp_enabled=yes
jobs:
build-linux-x11:
name: Export GodSVG for Linux X11
runs-on: ubuntu-latest
env:
PLATFORM: "Linux/X11"
EXTENSION: "exe"
BUILD_NAME: "linux-64bit"
steps:
- name: Cache Template
id: cache-template
uses: actions/cache@v3
with:
key: template-${{ env.PLATFORM }}-${{ env.GODOT_VERSION }}-${{ env.GODOT_RELEASE }}-${{ env.GODOT_REPO }}-${{ env.GODOT_COMMIT_HASH }}-${{ env.BUILD_OPTIONS }}
path: |
~/.local/share/godot/export_templates/
- name: Set up Godot Editor
run: |
mkdir -v -p ~/godot-editor
cd ~/godot-editor
wget -q https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-${GODOT_RELEASE}/Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip
unzip Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip
mv ./Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64 ~/godot-editor/godot
echo "~/godot-editor" >> $GITHUB_PATH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Install dependencies
run: sudo apt install -y scons python3
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Clone Godot repository
run: git clone $GODOT_REPO godot
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Checkout specific commit
run: |
cd godot
git fetch
git checkout $GODOT_COMMIT_HASH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Build Godot template for Linux
run: |
cd godot
scons p=linuxbsd arch=x86_64 ${BUILD_OPTIONS}
mkdir -v -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/
mv ./bin/godot.linuxbsd.template_release.x86_64 ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/linux_release.x86_64
- name: Checkout repository
uses: actions/checkout@v4
with:
path: godsvg
- name: Export project
run: |
ls -l
cd godsvg
mkdir -v -p build
godot --headless --export-release "${{ env.PLATFORM }}" build/GodSVG.x86_64
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.PROJECT_NAME }}.Linux-X11
path: godsvg/build/GodSVG.x86_64
if-no-files-found: error
retention-days: 28
build-linux-wayland:
name: Export GodSVG for Linux Wayland
runs-on: ubuntu-latest
env:
PLATFORM: "Linux/Wayland"
EXTENSION: "exe"
BUILD_NAME: "linux-64bit"
steps:
- name: Cache Template
id: cache-template
uses: actions/cache@v3
with:
key: template-${{ env.PLATFORM }}-${{ env.GODOT_VERSION }}-${{ env.GODOT_RELEASE }}-${{ env.GODOT_REPO }}-${{ env.GODOT_COMMIT_HASH }}-${{ env.BUILD_OPTIONS }}
path: |
~/.local/share/godot/export_templates/
- name: Set up Godot Editor
run: |
mkdir -v -p ~/godot-editor
cd ~/godot-editor
wget -q https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-${GODOT_RELEASE}/Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip
unzip Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip
mv ./Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64 ~/godot-editor/godot
echo "~/godot-editor" >> $GITHUB_PATH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Install dependencies
run: sudo apt install -y scons python3 libwayland-dev
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Clone Godot repository
run: git clone $GODOT_REPO godot
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Checkout specific commit
run: |
cd godot
git fetch
git checkout $GODOT_COMMIT_HASH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Build Godot template for Linux
run: |
cd godot
scons p=linuxbsd arch=x86_64 ${BUILD_OPTIONS}
mkdir -v -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/
mv ./bin/godot.linuxbsd.template_release.x86_64 ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/linux_release.x86_64
- name: Checkout repository
uses: actions/checkout@v4
with:
path: godsvg
- name: Export project
run: |
ls -l
cd godsvg
mkdir -v -p build
godot --headless --export-release "${{ env.PLATFORM }}" build/GodSVG.x86_64
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.PROJECT_NAME }}.Linux-Wayland
path: godsvg/build/GodSVG.x86_64
if-no-files-found: error
retention-days: 28
build-windows:
name: Export GodSVG for Windows
runs-on: ubuntu-latest
env:
PLATFORM: "Windows"
steps:
- name: Cache Template
id: cache-template
uses: actions/cache@v3
with:
key: template-${{ env.PLATFORM }}-${{ env.GODOT_VERSION }}-${{ env.GODOT_RELEASE }}-${{ env.GODOT_REPO }}-${{ env.GODOT_COMMIT_HASH }}-${{ env.BUILD_OPTIONS }}
path: |
~/.local/share/godot/export_templates/
- name: Set up Godot Editor
run: |
mkdir -v -p ~/godot-editor
cd ~/godot-editor
wget -q https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-${GODOT_RELEASE}/Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip
unzip Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip
mv ./Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64 ~/godot-editor/godot
echo "~/godot-editor" >> $GITHUB_PATH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Install dependencies
run: |
sudo apt install -y scons python3
sudo apt install -y g++-mingw-w64-x86-64-posix
sudo apt install -y --fix-missing wine64
wget -q https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe
mkdir -v -p ~/.local/share/rcedit
mv rcedit-x64.exe ~/.local/share/rcedit
godot --headless --quit
echo 'export/windows/wine = "/usr/bin/wine64"' >> ~/.config/godot/editor_settings-${GODOT_FEATURE_VERSION}.tres
echo 'export/windows/rcedit = "/home/runner/.local/share/rcedit/rcedit-x64.exe"' >> ~/.config/godot/editor_settings-${GODOT_FEATURE_VERSION}.tres
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Clone Godot repository
run: git clone $GODOT_REPO godot
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Checkout specific commit
run: |
cd godot
git fetch
git checkout $GODOT_COMMIT_HASH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Build Godot template for Windows
run: |
apt search mingw
cd godot
scons p=windows ${BUILD_OPTIONS}
mkdir -v -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/
mv ./bin/godot.windows.template_release.x86_64.exe ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/windows_release_x86_64.exe
- name: Checkout repository
uses: actions/checkout@v4
with:
path: godsvg
- name: Export project
run: |
cd godsvg
mkdir -v -p build
godot --headless --export-release "Windows Desktop" build/GodSVG.exe
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.PROJECT_NAME }}.Windows
path: godsvg/build/GodSVG.exe
if-no-files-found: error
retention-days: 28
build-macos:
name: Export GodSVG for MacOS
runs-on: macos-latest
env:
PLATFORM: "macOS"
steps:
- name: Cache Template
id: cache-template
uses: actions/cache@v3
with:
key: template-${{ env.PLATFORM }}-${{ env.GODOT_VERSION }}-${{ env.GODOT_RELEASE }}-${{ env.GODOT_REPO }}-${{ env.GODOT_COMMIT_HASH }}-${{ env.BUILD_OPTIONS }}
path: |
/Users/runner/Library/Application Support/Godot/export_templates/
- name: Set up Godot Editor
run: |
mkdir -v -p ~/godot-editor
cd ~/godot-editor
wget -q https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-${GODOT_RELEASE}/Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_macos.universal.zip
unzip -a Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_macos.universal.zip
echo "~/godot-editor/Godot.app/Contents/MacOS" >> $GITHUB_PATH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Install dependencies
run: brew install scons
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Clone Godot repository
run: git clone $GODOT_REPO godot
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Checkout specific commit
run: |
cd godot
git fetch
git checkout $GODOT_COMMIT_HASH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Build Godot template for macOS (arm64 release)
run: |
godot --help
cd godot
scons p=macos arch=arm64 ${BUILD_OPTIONS}
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Build Godot template for macOS (x86_64 release)
run: |
cd godot
scons p=macos arch=x86_64 ${BUILD_OPTIONS}
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Combine binaries with lipo
run: |
cd godot/bin
lipo -create godot.macos.template_release.x86_64 godot.macos.template_release.arm64 -output godot.macos.template_release.universal
chmod +x *
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Prepare .app bundle
run: |
cd godot/bin
cp -r ../misc/dist/macos_template.app .
mkdir -p macos_template.app/Contents/MacOS
cp godot.macos.template_release.universal macos_template.app/Contents/MacOS/godot_macos_release.universal;
chmod +x macos_template.app/Contents/MacOS/godot_macos*;
zip -q -9 -r macos.zip macos_template.app;
mkdir -v -p "/Users/runner/Library/Application Support/Godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}"
mv macos.zip "/Users/runner/Library/Application Support/Godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}"
- name: Checkout repository
uses: actions/checkout@v4
with:
path: godsvg
- name: Export project
run: |
cd godsvg
mkdir -v -p build
godot --headless --export-release "macOS" build/GodSVG.zip
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.PROJECT_NAME }}.MacOS
path: godsvg/build/GodSVG.zip
if-no-files-found: error
retention-days: 28
build-web:
name: Export GodSVG for Web
runs-on: ubuntu-latest
env:
PLATFORM: "Web"
steps:
- name: Cache Template
id: cache-template
uses: actions/cache@v3
with:
key: template-${{ env.PLATFORM }}-${{ env.GODOT_VERSION }}-${{ env.GODOT_RELEASE }}-${{ env.GODOT_REPO }}-${{ env.GODOT_COMMIT_HASH }}-${{ env.BUILD_OPTIONS }}
path: |
~/.local/share/godot/export_templates/
- name: Set up Godot Editor
run: |
mkdir -v -p ~/godot-editor
cd ~/godot-editor
wget -q https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-${GODOT_RELEASE}/Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip
unzip Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip
mv ./Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64 ~/godot-editor/godot
echo "~/godot-editor" >> $GITHUB_PATH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Install dependencies
run: sudo apt-get install -y scons python3
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Install Emscripten
run: |
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install latest
./emsdk activate latest
source ./emsdk_env.sh
shell: bash
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Clone Godot repository
run: git clone $GODOT_REPO godot
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Checkout specific commit
run: |
cd godot
git fetch
git checkout $GODOT_COMMIT_HASH
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
name: Build Godot template for Web
run: |
cd godot
source ../emsdk/emsdk_env.sh
scons p=web arch=wasm32 ${BUILD_OPTIONS} threads=no
mkdir -v -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/
mv ./bin/godot.web.template_release.wasm32.nothreads.zip ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/web_nothreads_release.zip
- name: Checkout repository
uses: actions/checkout@v4
with:
path: godsvg
- name: Export project
run: |
cd godsvg
mkdir -v -p build/web
godot --headless --export-release "Web" build/web/index.html
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.PROJECT_NAME }}.Web
path: godsvg/build/web
if-no-files-found: error
retention-days: 28