- move CI only prerequisites to github actions - Add linux, mac prereq actions - Add an action for indicating dependency versions - Move ninja installation into its own script
27 lines
537 B
YAML
27 lines
537 B
YAML
name: Linux
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release
|
|
- rc/**
|
|
|
|
jobs:
|
|
build-linux:
|
|
name: build-linux
|
|
runs-on: 'ubuntu-24.04-16core'
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.1.6
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./.github/actions/linux-prereq
|
|
- name: Run build script
|
|
run: |
|
|
cd build/linux && printf "y" | ./build.sh continuous
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: filament-linux
|
|
path: out/filament-release-linux.tgz
|