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 d940d74cd43c169f0ec30f029b8cec26f786d9d5 Author: tibor17 <[email protected]> AuthorDate: Sun Nov 9 00:20:58 2025 +0100 Missing many files in the GH Artifacts of CI ex-post. --- .github/workflows/maven-verify.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index e6c9b637c..51567b81d 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -32,9 +32,21 @@ 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. + # Remove the line with `*-jvmRun*-events.bin` pattern if large streams should be investigated. failure-upload-path: | - surefire-its/target/*/log.txt - surefire-its/target/**/surefire-reports/* - surefire-its/target/**/failsafe-reports/* + **/* + !**/pom.xml + !**/*.java + !**/*.class + !**/*.jar + !**/*.war + !**/*.tar.gz + !**/*.tgz + !**/*.zip + !**/target/site/* + !**/target/staging/* + !**/hs_err_pid* + !surefire-its/target/ConsoleOutputIT_*/target/surefire-reports/*-jvmRun*-events.bin timeout-minutes: 600 os-matrix: '[ "ubuntu-latest", "windows-2022", "macos-latest" ]'
