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

cshannon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/main by this push:
     new fb8acf9909 Publish test results on failure (#1705)
fb8acf9909 is described below

commit fb8acf9909835d324f450e75677350a48added1f
Author: Christopher L. Shannon <[email protected]>
AuthorDate: Thu Feb 19 11:08:53 2026 -0500

    Publish test results on failure (#1705)
    
    Update CI for all workflows to always publish test results even on
    failures
---
 .github/workflows/ci-nightly.yml | 4 ++--
 .github/workflows/ci-quick.yml   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci-nightly.yml b/.github/workflows/ci-nightly.yml
index a0ef953154..bdaf9741c5 100644
--- a/.github/workflows/ci-nightly.yml
+++ b/.github/workflows/ci-nightly.yml
@@ -80,13 +80,13 @@ jobs:
         shell: bash
         run: mvn -B -e -fae verify -Pactivemq.tests-quick 
-Dsurefire.rerunFailingTestsCount=3
       - name: Upload Test Results
-        if: (!cancelled())
+        if: always()
         uses: actions/upload-artifact@v4
         with:
           name: test-results-${{ matrix.os }}-java${{ matrix.java-version }}
           path: '**/target/surefire-reports/*.xml'
       - name: Publish Test Results
-        if: (!cancelled()) && runner.os == 'Linux'
+        if: runner.os == 'Linux'
         uses: EnricoMi/publish-unit-test-result-action@v2
         with:
           large_files: true
diff --git a/.github/workflows/ci-quick.yml b/.github/workflows/ci-quick.yml
index 43117d0eb6..ec5c1e75ce 100644
--- a/.github/workflows/ci-quick.yml
+++ b/.github/workflows/ci-quick.yml
@@ -75,13 +75,13 @@ jobs:
       - name: Test
         run: mvn -B -e -fae verify -Pactivemq.tests-quick
       - name: Upload Test Results
-        if: (!cancelled())
+        if: always()
         uses: actions/upload-artifact@v4
         with:
           name: test-results
           path: '**/target/surefire-reports/*.xml'
       - name: Publish Test Results
-        if: (!cancelled())
+        if: always()
         uses: EnricoMi/publish-unit-test-result-action@v2
         with:
           large_files: true


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact


Reply via email to