From 4246b33e250c5b58f858a49e537b35826e394c29 Mon Sep 17 00:00:00 2001 From: Jean-Louis Monteiro Date: Tue, 17 Feb 2026 16:50:53 +0100 Subject: [PATCH] Increase timeout for weekly CI build and ensure test results are always uploaded --- .github/workflows/ci-weekly.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-weekly.yml b/.github/workflows/ci-weekly.yml index 3c07c6b0583..220e6ac7052 100644 --- a/.github/workflows/ci-weekly.yml +++ b/.github/workflows/ci-weekly.yml @@ -61,6 +61,7 @@ jobs: pull-requests: write runs-on: ubuntu-24.04 + timeout-minutes: 480 steps: - uses: actions/checkout@v4 @@ -72,13 +73,13 @@ jobs: - name: Test run: mvn -B -e -fae verify -Dsurefire.rerunFailingTestsCount=3 - 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