2020-08-22 23:04:57 +02:00
|
|
|
name: 🌐 JavaScript Builds
|
2023-04-04 15:56:53 +02:00
|
|
|
on:
|
|
|
|
workflow_call:
|
2020-07-24 10:19:19 +02:00
|
|
|
|
2020-10-22 13:27:03 +02:00
|
|
|
# Global Settings
|
2020-07-24 10:19:19 +02:00
|
|
|
env:
|
2022-08-25 14:11:54 +02:00
|
|
|
# Only used for the cache key. Increment version to force clean build.
|
2021-04-19 14:37:47 +02:00
|
|
|
GODOT_BASE_BRANCH: 3.x
|
2021-09-01 17:26:01 +02:00
|
|
|
SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no
|
2024-01-30 14:54:15 +01:00
|
|
|
EM_VERSION: 3.1.39
|
2021-09-01 17:26:01 +02:00
|
|
|
EM_CACHE_FOLDER: "emsdk-cache"
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-javascript
|
|
|
|
cancel-in-progress: true
|
2020-07-24 10:19:19 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
javascript-template:
|
2023-09-05 14:56:53 +02:00
|
|
|
runs-on: "ubuntu-22.04"
|
2020-07-24 10:19:19 +02:00
|
|
|
name: Template (target=release, tools=no)
|
|
|
|
|
|
|
|
steps:
|
2023-09-04 16:05:38 +02:00
|
|
|
- uses: actions/checkout@v4
|
2020-07-24 10:19:19 +02:00
|
|
|
|
|
|
|
- name: Set up Emscripten latest
|
2024-01-25 12:13:22 +01:00
|
|
|
uses: mymindstorm/setup-emsdk@v14
|
2020-07-24 10:19:19 +02:00
|
|
|
with:
|
|
|
|
version: ${{env.EM_VERSION}}
|
|
|
|
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
|
2024-01-25 12:13:22 +01:00
|
|
|
cache-key: emsdk-${{ matrix.cache-name }}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
|
2020-07-24 10:19:19 +02:00
|
|
|
|
|
|
|
- name: Verify Emscripten setup
|
|
|
|
run: |
|
|
|
|
emcc -v
|
|
|
|
|
2024-07-13 17:43:37 +02:00
|
|
|
- name: Restore Godot build cache
|
|
|
|
uses: ./.github/actions/godot-cache-restore
|
2021-09-01 17:26:01 +02:00
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
- name: Setup python and scons
|
|
|
|
uses: ./.github/actions/godot-deps
|
2020-10-22 13:27:03 +02:00
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Compilation
|
|
|
|
uses: ./.github/actions/godot-build
|
2020-10-22 13:27:03 +02:00
|
|
|
with:
|
2021-09-01 17:26:01 +02:00
|
|
|
sconsflags: ${{ env.SCONSFLAGS }}
|
|
|
|
platform: javascript
|
|
|
|
target: release
|
|
|
|
tools: false
|
|
|
|
|
2024-07-13 17:43:37 +02:00
|
|
|
- name: Save Godot build cache
|
|
|
|
uses: ./.github/actions/godot-cache-save
|
|
|
|
continue-on-error: true
|
|
|
|
|
2021-09-01 17:26:01 +02:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: ./.github/actions/upload-artifact
|