mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 08:57:34 +01:00
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
name: 🌐 JavaScript Builds
|
|
on: [push, pull_request]
|
|
|
|
# Global Settings
|
|
env:
|
|
PANDEMONIUM_BASE_BRANCH: master
|
|
SCONSFLAGS: verbose=yes warnings=all debug_symbols=no werror=yes
|
|
EM_VERSION: 3.1.39
|
|
EM_CACHE_FOLDER: "emsdk-cache"
|
|
|
|
concurrency:
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-javascript
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
javascript-template:
|
|
runs-on: "ubuntu-22.04"
|
|
name: Template (target=release, tools=no)
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Emscripten latest
|
|
uses: mymindstorm/setup-emsdk@v14
|
|
with:
|
|
version: ${{env.EM_VERSION}}
|
|
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
|
|
cache-key: emsdk-${{ matrix.cache-name }}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
|
|
|
|
- name: Verify Emscripten setup
|
|
run: |
|
|
emcc -v
|
|
|
|
- name: Restore Pandemonium build cache
|
|
uses: ./.github/actions/pandemonium-cache-restore
|
|
continue-on-error: true
|
|
|
|
- name: Setup python and scons
|
|
uses: ./.github/actions/pandemonium-deps
|
|
|
|
- name: Compilation
|
|
uses: ./.github/actions/pandemonium-build
|
|
with:
|
|
sconsflags: ${{ env.SCONSFLAGS }}
|
|
platform: javascript
|
|
target: release
|
|
tools: false
|
|
|
|
- name: Save Pandemonium build cache
|
|
uses: ./.github/actions/pandemonium-cache-save
|
|
continue-on-error: true
|
|
|
|
- name: Upload artifact
|
|
uses: ./.github/actions/upload-artifact
|