Skip to content

Commit

Permalink
Don't fast break builds on GitHub
Browse files Browse the repository at this point in the history
ITs take long time and in more of cases one build fail
due to test or environment unstable like connection timeout.

In the same time other build can be finished with success
so break all builds is not effective
  • Loading branch information
slawekjaranowski committed Mar 9, 2023
1 parent 2709f76 commit c6ccef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/maven-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
ff-goal: 'clean install site site:stage -P reporting -nsu'
ff-site-goal: '-v'
verify-goal: 'clean install -nsu -P run-its'
verify-fail-fast: true
verify-fail-fast: false
failure-upload-path: |
surefire-its/target/*/log.txt
surefire-its/target/**/surefire-reports/*
Expand Down

0 comments on commit c6ccef3

Please sign in to comment.