diff options
author | Brad Linden <brad@lindenlab.com> | 2024-10-04 10:32:00 -0700 |
---|---|---|
committer | Brad Linden <brad@lindenlab.com> | 2024-10-04 10:32:00 -0700 |
commit | 16e4747dcd04c78b438570ee6dea4ccc52e7485c (patch) | |
tree | a8632a3d10052fa4dcbb6e76ebbdcc1921cdc4c6 | |
parent | 78644fafdbaaf732492efba7624bc20ddeaef977 (diff) |
Make linux build failures not block other platforms.
See "Example: Preventing a specific failing matrix job from failing a workflow run"
https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-preventing-a-specific-failing-matrix-job-from-failing-a-workflow-run
-rw-r--r-- | .github/workflows/build.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1804da749f..4ab627bdfe 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -44,6 +44,7 @@ jobs: fi build: needs: setup + continue-on-error: ${{ matrix.experimental }} strategy: matrix: runner: [windows-large, macos-12-xl] @@ -51,6 +52,7 @@ jobs: include: - runner: linux-large configuration: ReleaseOS + experimental: true runs-on: ${{ matrix.runner }} outputs: viewer_channel: ${{ steps.build.outputs.viewer_channel }} |