From 16e4747dcd04c78b438570ee6dea4ccc52e7485c Mon Sep 17 00:00:00 2001 From: Brad Linden Date: Fri, 4 Oct 2024 10:32:00 -0700 Subject: Make linux build failures not block other platforms. See "Example: Preventing a specific failing matrix job from failing a workflow run" https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-preventing-a-specific-failing-matrix-job-from-failing-a-workflow-run --- .github/workflows/build.yaml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github') diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1804da749f..4ab627bdfe 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -44,6 +44,7 @@ jobs: fi build: needs: setup + continue-on-error: ${{ matrix.experimental }} strategy: matrix: runner: [windows-large, macos-12-xl] @@ -51,6 +52,7 @@ jobs: include: - runner: linux-large configuration: ReleaseOS + experimental: true runs-on: ${{ matrix.runner }} outputs: viewer_channel: ${{ steps.build.outputs.viewer_channel }} -- cgit v1.2.3