Try to convince github actions to build all jobs instead of stopping on first fail. Using "fail-fast: false" this time
This commit is contained in:
parent
46346f59f6
commit
d88d078abe
1
.github/workflows/linux.yml
vendored
1
.github/workflows/linux.yml
vendored
@ -6,6 +6,7 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-18.04
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
cxx: [g++-4.8, g++-8, g++-10, clang++-9]
|
||||
build_type: [Debug, Release]
|
||||
|
||||
1
.github/workflows/macos.yml
vendored
1
.github/workflows/macos.yml
vendored
@ -6,6 +6,7 @@ jobs:
|
||||
build:
|
||||
runs-on: macos-10.15
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
build_type: [Debug, Release]
|
||||
|
||||
|
||||
1
.github/workflows/windows.yml
vendored
1
.github/workflows/windows.yml
vendored
@ -6,6 +6,7 @@ jobs:
|
||||
build:
|
||||
runs-on: ${{matrix.os}}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
# windows-2016 and windows-2019 have MSVC 2017 and 2019 installed
|
||||
# respectively: https://github.com/actions/virtual-environments.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user