From 26504fbc825331648430781412c4d6da02c78214 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 12 Feb 2026 16:17:43 +0200 Subject: [PATCH] Fix testing --- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 37c4322..324c1e5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,7 +28,8 @@ pipeline { stage("${SCHEME}") { 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) + archiveArtifacts(artifacts: "*.json", allowEmptyArchive: true, fingerprint: true) + publishCtrfResults: "*.json" } } } @@ -47,7 +48,8 @@ pipeline { stage("${SCHEME}") { 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) + archiveArtifacts(artifacts: "*.json", allowEmptyArchive: true, fingerprint: true) + publishCtrfResults: "*.json" } } }