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:
Krylov Yaroslav 2020-12-12 03:21:16 +03:00
parent 46346f59f6
commit d88d078abe
No known key found for this signature in database
GPG Key ID: 4C127DE932933076
3 changed files with 3 additions and 0 deletions

View File

@ -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]

View File

@ -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]

View File

@ -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.