-
Notifications
You must be signed in to change notification settings - Fork 83
63 lines (51 loc) · 1.5 KB
/
web_builds.yml
File metadata and controls
63 lines (51 loc) · 1.5 KB
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
name: 🌐 Web Builds
on:
workflow_call:
inputs:
version:
required: true
type: string
# Global Settings
env:
SCONSFLAGS: warnings=extra werror=yes debug_symbols=no
EM_VERSION: 3.1.18
EM_CACHE_FOLDER: "emsdk-cache"
concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-web
cancel-in-progress: true
jobs:
web-template:
runs-on: "ubuntu-20.04"
name: Template (target=template_release)
steps:
- name: Checkout Godot
uses: actions/checkout@v4
with:
repository: godotengine/godot
ref: ${{ inputs.version }}
- name: Checkout ECMAScript
uses: actions/checkout@v4
with:
path: ${{github.workspace}}/modules/javascript/
- name: Set up Emscripten latest
uses: mymindstorm/setup-emsdk@v12
with:
version: ${{env.EM_VERSION}}
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
- name: Verify Emscripten setup
run: |
emcc -v
- name: Setup Godot build cache
uses: ./.github/actions/godot-cache
continue-on-error: true
- name: Setup python and scons
uses: ./.github/actions/godot-deps
- name: Compilation
uses: ./.github/actions/godot-build
with:
sconsflags: ${{ env.SCONSFLAGS }}
platform: web
target: template_release
tests: false
- name: Upload artifact
uses: ./.github/actions/upload-artifact