vk: increase number of command buffers #10411
Workflow file for this run
This file contains 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: Presubmit | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-desktop: | |
name: build-desktop | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-14-xlarge, ubuntu-22.04-16core] | |
steps: | |
- uses: actions/[email protected] | |
- name: Run build script | |
run: | | |
WORKFLOW_OS=`echo \`uname\` | sed "s/Darwin/mac/" | tr [:upper:] [:lower:]` | |
cd build/$WORKFLOW_OS && printf "y" | ./build.sh presubmit | |
- name: Test material parser | |
run: | | |
out/cmake-release/filament/test/test_material_parser | |
build-windows: | |
name: build-windows | |
runs-on: win-2019-16core | |
steps: | |
- uses: actions/[email protected] | |
- name: Run build script | |
run: | | |
build\windows\build-github.bat presubmit | |
shell: cmd | |
build-android: | |
name: build-android | |
runs-on: ubuntu-22.04-16core | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Run build script | |
# Only build 1 64 bit target during presubmit to cut down build times during presubmit | |
# Continuous builds will build everything | |
run: | | |
cd build/android && printf "y" | ./build.sh presubmit arm64-v8a | |
build-ios: | |
name: build-iOS | |
runs-on: macos-14-xlarge | |
steps: | |
- uses: actions/[email protected] | |
- name: Run build script | |
run: | | |
cd build/ios && printf "y" | ./build.sh presubmit | |
- name: Build iOS samples | |
run: | | |
cd build/ios && ./build-samples.sh presubmit | |
build-web: | |
name: build-web | |
runs-on: ubuntu-22.04-16core | |
steps: | |
- uses: actions/[email protected] | |
- name: Run build script | |
run: | | |
cd build/web && printf "y" | ./build.sh presubmit | |
test-renderdiff: | |
name: test-renderdiff | |
runs-on: ubuntu-22.04-32core | |
steps: | |
- uses: actions/[email protected] | |
- uses: ./.github/actions/ubuntu-apt-add-src | |
- name: Run script | |
run: | | |
source ./build/linux/ci-common.sh && bash test/renderdiff_tests.sh | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: presubmit-renderdiff-result | |
path: ./out/renderdiff_tests |