Release Filament 1.76.0 #1609
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Postsubmit CI' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release | |
| - rc/** | |
| jobs: | |
| build-android: | |
| name: build-android | |
| # We intentially use a larger runner here to enable larger disk space | |
| # (standard linux runner will fail on disk space and faster build time). | |
| runs-on: 'ubuntu-24.04-4core' | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ./.github/actions/linux-prereq | |
| - name: Run Android Continuous | |
| uses: ./.github/actions/android-continuous | |
| with: | |
| build-abi: armeabi-v7a,arm64-v8a,x86_64 | |
| build-ios: | |
| name: build-ios | |
| runs-on: 'macos-14' | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ./.github/actions/mac-prereq | |
| - name: Select Xcode 16.2 | |
| run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer | |
| - name: Run build script | |
| run: | | |
| cd build/ios && printf "y" | ./build.sh continuous | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: filament-ios | |
| path: out/filament-release-ios.tgz | |
| - name: Build iOS samples | |
| run: | | |
| cd build/ios && ./build-samples.sh continuous | |
| build-linux: | |
| name: build-linux | |
| runs-on: 'arm-ubuntu-24.04-16core' | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| 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@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: filament-arm-linux | |
| path: out/filament-release-arm-linux.tgz | |
| build-mac: | |
| name: build-mac | |
| runs-on: 'macos-14' | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ./.github/actions/mac-prereq | |
| - name: Run build script | |
| run: | | |
| cd build/mac && printf "y" | ./build.sh continuous | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: filament-mac | |
| path: out/filament-release-darwin.tgz | |
| build-web: | |
| name: build-web | |
| runs-on: 'arm-ubuntu-24.04-16core' | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| 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@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: filament-web | |
| path: out/filament-release-web.tgz | |
| build-windows: | |
| name: build-windows | |
| runs-on: 'windows-2022' | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| - name: Run build script | |
| run: | | |
| build\windows\build-github.bat continuous | |
| shell: cmd | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: filament-windows | |
| path: out/filament-windows.tgz |