Updating tests

This commit is contained in:
retropikzel 2025-09-26 14:48:02 +03:00
parent 943e6c6622
commit db3b1226cf
1 changed files with 5 additions and 0 deletions

5
Jenkinsfile vendored
View File

@ -30,6 +30,11 @@ pipeline {
sh "COMPILE_R7RS=${SCHEME} test-r7rs test.scm" sh "COMPILE_R7RS=${SCHEME} test-r7rs test.scm"
} }
} }
stage("${SCHEME} logs") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "cat .test-r7rs/${SCHEME}/logs/*.log"
}
}
} }
} }
} }