Skip to content

Commit

Permalink
no fail fast for build
Browse files Browse the repository at this point in the history
  • Loading branch information
azimafroozeh committed Sep 11, 2024
1 parent 03ac8fe commit fe3d1aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
needs:
- check-format
strategy:
fail-fast: true
matrix:
platform: [ ubuntu-latest, macos-latest, president ]
build_type: [ Debug, Release ]
Expand Down Expand Up @@ -84,8 +83,9 @@ jobs:
# run: cmake --build ${{github.workspace}}/build_iwyu_${{ matrix.build_type }} -j 10

generate_dataset:
needs:
- build
needs: [ build ]
if: success()

strategy:
fail-fast: true
matrix:
Expand Down

0 comments on commit fe3d1aa

Please sign in to comment.