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 6f3c96987db34c6181860be7bac38856606bb6e2 Author: tibordigana <[email protected]> AuthorDate: Wed Nov 12 17:03:46 2025 +0100 Optionally suppressed *-jvmRun*-events.bin --- .github/workflows/maven-verify.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index ea30a7745..f8a00e14a 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -33,6 +33,7 @@ jobs: 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: | **/* !**/pom.xml @@ -46,5 +47,6 @@ jobs: !**/target/site/* !**/target/staging/* !**/hs_err_pid* + !surefire-its/target/ConsoleOutputIT_*/target/surefire-reports/*-jvmRun*-events.bin timeout-minutes: 180 os-matrix: '[ "ubuntu-latest", "windows-2022", "macos-latest" ]'
