diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-05-16 15:05:04 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-05-16 15:05:04 -0400 |
commit | e6c476fc1f6276b007aee3a4555b5eccf7b1dfa2 (patch) | |
tree | 16cd948397bae65f81d8751626d52e9aae522b8e | |
parent | e980dffd5c08bdaad745e47d062c4e7c4c968a6e (diff) |
Set continue-on-error=true so Linux failures don't block.
-rw-r--r-- | .github/workflows/build.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 86ddeca182..73c110277f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,9 +13,12 @@ jobs: matrix: runner: [windows-large, macos-12-xl, linux-large] configuration: [Release, ReleaseOS] + Linux: [false] include: - runner: macos-12-xl developer_dir: "/Applications/Xcode_14.0.1.app/Contents/Developer" + - runner: linux-large + Linux: true exclude: - runner: windows-large configuration: ReleaseOS @@ -24,6 +27,8 @@ jobs: - runner: linux-large configuration: Release runs-on: ${{ matrix.runner }} + # Linux build failures shouldn't block the whole project. + continue-on-error: ${{ matrix.Linux }} outputs: viewer_channel: ${{ steps.build.outputs.viewer_channel }} viewer_version: ${{ steps.build.outputs.viewer_version }} |