From e6c476fc1f6276b007aee3a4555b5eccf7b1dfa2 Mon Sep 17 00:00:00 2001 From: Nat Goodspeed Date: Thu, 16 May 2024 15:05:04 -0400 Subject: Set continue-on-error=true so Linux failures don't block. --- .github/workflows/build.yaml | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.github') 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 }} -- cgit v1.2.3