From 3a292e6c922f255a500dd98098645738919be7d7 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 12 Feb 2026 16:24:57 +0200 Subject: [PATCH] Fix testing --- Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9752ada..8a5f39e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,7 +30,6 @@ pipeline { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs run-test-docker" archiveArtifacts(artifacts: "*.json", allowEmptyArchive: true, fingerprint: true) - publishCtrfResults: "*.json" } } } @@ -49,7 +48,6 @@ pipeline { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs run-test-docker" archiveArtifacts(artifacts: "*.json", allowEmptyArchive: true, fingerprint: true) - publishCtrfResults: "*.json" } } } @@ -59,4 +57,10 @@ pipeline { } } } + + post { + success { + publishCtrfResults: "*.json" + } + } }