diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-05-16 15:09:41 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-05-16 15:09:41 -0400 |
commit | 865125d9da247f8828240060862782020964bf93 (patch) | |
tree | 4e62ffa74fc3182b7643644ea44a1736f1e11537 | |
parent | e6c476fc1f6276b007aee3a4555b5eccf7b1dfa2 (diff) |
Don't introduce a fourth build (second Linux build)
-rw-r--r-- | .github/workflows/build.yaml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 73c110277f..542b8762ef 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,12 +13,9 @@ 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 @@ -28,7 +25,7 @@ jobs: configuration: Release runs-on: ${{ matrix.runner }} # Linux build failures shouldn't block the whole project. - continue-on-error: ${{ matrix.Linux }} + continue-on-error: ${{ runner.os == 'Linux' }} outputs: viewer_channel: ${{ steps.build.outputs.viewer_channel }} viewer_version: ${{ steps.build.outputs.viewer_version }} |