- Move emscripten download into its own script - Refactor the common "CI choice" prompt into its own file. - Move the content of `build/common/ci-common.sh` to the "CI choice" script. - Mention the get-emscripten.sh script in BUILDING.md
28 lines
568 B
YAML
28 lines
568 B
YAML
name: Web
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release
|
|
- rc/**
|
|
|
|
jobs:
|
|
build-web:
|
|
name: build-web
|
|
runs-on: 'ubuntu-24.04-16core'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.1.6
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./.github/actions/linux-prereq
|
|
- uses: ./.github/actions/web-prereq
|
|
- name: Run build script
|
|
run: |
|
|
cd build/web && printf "y" | ./build.sh continuous
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: filament-web
|
|
path: out/filament-release-web.tgz
|