diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index bfad0e467b..550dedb875 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -44,13 +44,15 @@ jobs: fi build: needs: setup + continue-on-error: ${{ matrix.experimental }} strategy: matrix: - runner: [windows-large, macos-14-xlarge, linux-large] + runner: [windows-large, macos-14-xlarge] configuration: ${{ fromJSON(needs.setup.outputs.configurations) }} + experimental: [false] include: - runner: linux-large - continue-on-error: true + experimental: true runs-on: ${{ matrix.runner }} outputs: viewer_channel: ${{ steps.build.outputs.viewer_channel }} @@ -154,7 +156,6 @@ jobs: env: AUTOBUILD_VCS_BRANCH: ${{ steps.which-branch.outputs.branch }} RUNNER_OS: ${{ runner.os }} - continue-on-error: ${{ matrix.continue-on-error }} run: | # set up things the viewer's build.sh script expects set -x |