This is an automated email from the ASF dual-hosted git repository. tibordigana pushed a commit to branch tibor17-gh-workflows-path in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
commit 1d855e50d8eef16514fa014f23a983a469bed47f Author: tibor17 <[email protected]> AuthorDate: Sun Nov 9 00:20:58 2025 +0100 Missing many files in the GH Artifacts of CI ex-post. Build timeout is unnecessarily long. --- .github/workflows/maven-verify.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index e6c9b637c..99a5e1f97 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -32,9 +32,18 @@ jobs: ff-site-goal: '-v' verify-goal: 'clean install -nsu -P run-its' verify-fail-fast: false + # Investigation reasons: Some tests generate custom files, standard reports and logs. failure-upload-path: | - surefire-its/target/*/log.txt - surefire-its/target/**/surefire-reports/* - surefire-its/target/**/failsafe-reports/* - timeout-minutes: 600 + **/* + !**/pom.xml + !**/*.java + !**/*.class + !**/*.jar + !**/*.war + !**/*.tar.gz + !**/*.tgz + !**/*.zip + !**/target/site/* + !**/target/staging/* + timeout-minutes: 180 os-matrix: '[ "ubuntu-latest", "windows-2022", "macos-latest" ]'
