From: Michael Tremer Date: Sat, 22 Feb 2025 17:58:12 +0000 (+0000) Subject: jenkins: Move the asan logs to the root X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=af9c7fc6435aafcef47ff1c75d7304023b3c7a14;p=pakfire.git jenkins: Move the asan logs to the root Because otherwise I am too stupid to find them. Signed-off-by: Michael Tremer --- 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" }