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:
|
build:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
cxx: [g++-4.8, g++-8, g++-10, clang++-9]
|
cxx: [g++-4.8, g++-8, g++-10, clang++-9]
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug, Release]
|
||||||
|
|||||||
1
.github/workflows/macos.yml
vendored
1
.github/workflows/macos.yml
vendored
@ -6,6 +6,7 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: macos-10.15
|
runs-on: macos-10.15
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug, Release]
|
||||||
|
|
||||||
|
|||||||
1
.github/workflows/windows.yml
vendored
1
.github/workflows/windows.yml
vendored
@ -6,6 +6,7 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
# windows-2016 and windows-2019 have MSVC 2017 and 2019 installed
|
# windows-2016 and windows-2019 have MSVC 2017 and 2019 installed
|
||||||
# respectively: https://github.com/actions/virtual-environments.
|
# respectively: https://github.com/actions/virtual-environments.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user