summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-05-16 15:05:04 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-05-16 15:05:04 -0400
commite6c476fc1f6276b007aee3a4555b5eccf7b1dfa2 (patch)
tree16cd948397bae65f81d8751626d52e9aae522b8e
parente980dffd5c08bdaad745e47d062c4e7c4c968a6e (diff)
Set continue-on-error=true so Linux failures don't block.
-rw-r--r--.github/workflows/build.yaml5
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 }}