Skip to content

Clean up error_macros.h (#98) #38

Clean up error_macros.h (#98)

Clean up error_macros.h (#98) #38

Workflow file for this run

name: 🌐 Web Builds
on: [push, pull_request]
# Global Settings
env:
BRANCH_NAME: main
SCONSFLAGS: verbose=yes warnings=all werror=yes debug_symbols=no
EM_VERSION: 2.0.25
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=release, tools=no)
steps:
- uses: actions/checkout@v4
# Additional cache for Emscripten generated system libraries
- name: Load Emscripten cache
id: web-template-emscripten-cache
uses: actions/cache@v4
with:
path: ${{env.EM_CACHE_FOLDER}}
key: ${{env.EM_VERSION}}-${{github.job}}
- name: Set up Emscripten latest
uses: mymindstorm/setup-emsdk@v14
with:
version: ${{env.EM_VERSION}}
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
- name: Verify Emscripten setup
run: |
emcc -v
- name: Setup build cache
uses: ./.github/actions/build-cache
continue-on-error: true
- name: Setup build dependencies
uses: ./.github/actions/build-dependencies
- name: Build
uses: ./.github/actions/build
with:
sconsflags: ${{ env.SCONSFLAGS }}
platform: web
target: release
tools: false
- name: Upload artifact
uses: ./.github/actions/upload-artifact