summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yaml')
-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 }}