Fix testing

This commit is contained in:
retropikzel 2026-02-12 16:24:57 +02:00
parent 2d9a62209d
commit 3a292e6c92
1 changed files with 6 additions and 2 deletions

8
Jenkinsfile vendored
View File

@ -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"
}
}
}