From: Kienan Stewart Date: Thu, 31 Oct 2024 12:45:41 +0000 (-0400) Subject: jjb: Use `**/*.log` to glob TAP log files X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=c78726547da24e73e112ad707192776b8f349307;p=lttng-ci.git jjb: Use `**/*.log` to glob TAP log files `**/*.*` catches other files left when running with more verbose test configurations. `*.log` is the suffix for automake test log files[1]. See this proposed patch to lttng-tools master[2] which updates the log suffix for the additional verbose log files. [1]: https://www.gnu.org/software/automake/manual/html_node/Parallel-Test-Harness.html [2]: https://review.lttng.org/c/lttng-tools/+/13430 Change-Id: If50a775af193a2973fd35b2b56337be21791fcc0 Signed-off-by: Kienan Stewart --- diff --git a/jobs/lttng-tools.yaml b/jobs/lttng-tools.yaml index 0e40b90..67c911a 100644 --- a/jobs/lttng-tools.yaml +++ b/jobs/lttng-tools.yaml @@ -427,7 +427,7 @@ !include-raw-escape: scripts/lttng-tools/postbuild_clean_processes_coredumps.sh - tap: <tng-tools_publisher_tap_defaults - results: 'tap/**/*.*' + results: 'tap/**/*.log' fail-if-no-results: true failed-tests-mark-build-as-failure: true include-comment-diagnostics: true