Revert "Try to convince github actions to build all jobs instead of stopping on first fail"

Doesn't work anyway(

This reverts commit 4be0b4083c.
This commit is contained in:
Krylov Yaroslav 2020-12-12 03:03:16 +03:00
parent 4be0b4083c
commit 46346f59f6
No known key found for this signature in database
GPG Key ID: 4C127DE932933076
3 changed files with 0 additions and 12 deletions

View File

@ -34,7 +34,6 @@ jobs:
run: |
${{matrix.install}}
cmake -E make_directory ${{runner.workspace}}/build
if: always()
- name: Configure
working-directory: ${{runner.workspace}}/build
@ -45,14 +44,11 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} ${{matrix.fuzz}} \
-DCMAKE_CXX_STANDARD=${{matrix.std}} -DFMT_DOC=OFF \
-DFMT_PEDANTIC=ON -DFMT_WERROR=ON $GITHUB_WORKSPACE
if: always()
- name: Build
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config ${{matrix.build_type}}
if: always()
- name: Test
working-directory: ${{runner.workspace}}/build
run: ctest -C ${{matrix.build_type}}
if: always()

View File

@ -14,21 +14,17 @@ jobs:
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
if: always()
- name: Configure
working-directory: ${{runner.workspace}}/build
run: |
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
-DFMT_DOC=OFF -DFMT_PEDANTIC=ON -DFMT_WERROR=ON $GITHUB_WORKSPACE
if: always()
- name: Build
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config ${{matrix.build_type}}
if: always()
- name: Test
working-directory: ${{runner.workspace}}/build
run: ctest -C ${{matrix.build_type}}
if: always()

View File

@ -30,7 +30,6 @@ jobs:
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
if: always()
- name: Configure
# Use a bash shell for $GITHUB_WORKSPACE.
@ -41,14 +40,11 @@ jobs:
-A ${{matrix.platform}} \
-DCMAKE_CXX_STANDARD=${{matrix.standard}} \
$GITHUB_WORKSPACE
if: always()
- name: Build
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config ${{matrix.build_type}}
if: always()
- name: Test
working-directory: ${{runner.workspace}}/build
run: ctest -C ${{matrix.build_type}}
if: always()