diff options
| -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 }}  | 
