Fix testing

This commit is contained in:
retropikzel 2026-02-12 16:17:43 +02:00
parent 69a377410f
commit 26504fbc82
1 changed files with 4 additions and 2 deletions

6
Jenkinsfile vendored
View File

@ -28,7 +28,8 @@ pipeline {
stage("${SCHEME}") { stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r6rs run-test-docker" 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}") { stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "timeout 600 make SCHEME=${SCHEME} LIBRARY=${LIBRARY} RNRS=r7rs run-test-docker" 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"
} }
} }
} }