From af9c7fc6435aafcef47ff1c75d7304023b3c7a14 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 22 Feb 2025 17:58:12 +0000 Subject: [PATCH] jenkins: Move the asan logs to the root Because otherwise I am too stupid to find them. Signed-off-by: Michael Tremer --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 37cee0dc..01f1ec95 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -176,13 +176,13 @@ pipeline { unstable { // Copy test logs into a special directory sh """ - mkdir -pv tests/asan + mkdir -pv asan find tests -name "*.log" | xargs --no-run-if-empty \ - cp --verbose --parents --target-directory=tests/asan/ + cp --verbose --parents --target-directory=asan/ """ // Archive the logs only if the stage fails - archiveArtifacts artifacts: "tests/asan/**/*" + archiveArtifacts artifacts: "asan/**/*" echo "The test logs have been archived" } -- 2.39.5