Skip to content

Commit

Permalink
use continue-on-error to check all possible failures
Browse files Browse the repository at this point in the history
  • Loading branch information
prudhomm committed Jul 8, 2023
1 parent 11d54b0 commit 1285ea5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/pull_request_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ jobs:
name: Build for linux
if: "!contains(github.event.head_commit.message, '[skip linux]')"
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
max-parallel: 4
fail-fast: false
matrix:
arch: [DEIGEN_DONT_VECTORIZE, msse2, mssse3, mavx, mavx2]
eigenversion: [3.3.4, 3.3.5, 3.3.6, 3.3.7, 3.3.8, 3.3.9, 3.4.0]
os: [ubuntu-22.04]

steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -47,6 +50,7 @@ jobs:
name: Build for linux AVX512
if: "!contains(github.event.head_commit.message, '[skip avx]')"
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
max-parallel: 4
matrix:
Expand Down Expand Up @@ -83,6 +87,7 @@ jobs:
name: Build for macOS
if: "!contains(github.event.head_commit.message, '[skip macos]')"
runs-on: macOS-10.15
continue-on-error: true
strategy:
max-parallel: 4
matrix:
Expand Down Expand Up @@ -117,6 +122,7 @@ jobs:
name: Build for Windows
if: "!contains(github.event.head_commit.message, '[skip windows]')"
runs-on: windows-2019
continue-on-error: true
strategy:
max-parallel: 4
matrix:
Expand Down Expand Up @@ -155,6 +161,7 @@ jobs:
name: Build for Windows
if: "!contains(github.event.head_commit.message, '[skip windows-avx]')"
runs-on: windows-2019
continue-on-error: true
strategy:
max-parallel: 4
matrix:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pull_request_test_non_x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
name: Build for Arm64-Centos7
if: "!contains(github.event.head_commit.message, '[skip arm64]')"
runs-on: ubuntu-22.04
continue-on-error: true
strategy:
max-parallel: 4
matrix:
Expand Down

0 comments on commit 1285ea5

Please sign in to comment.