This is an automated email from the ASF dual-hosted git repository.

sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/master by this push:
     new c6ccef3f2 Don't fast break builds on GitHub
c6ccef3f2 is described below

commit c6ccef3f23185ee5d1ccc3dd46ad2690f0311867
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Thu Mar 9 20:46:49 2023 +0100

    Don't fast break builds on GitHub
    
    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
---
 .github/workflows/maven-verify.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/maven-verify.yml 
b/.github/workflows/maven-verify.yml
index 500805510..9683e3bb2 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -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/*

Reply via email to