Testing dynamic Jenkinsfile

This commit is contained in:
retropikzel 2025-06-05 21:50:34 +03:00
parent a9bfa928df
commit 8a90bf0901
1 changed files with 1 additions and 8 deletions

9
Jenkinsfile vendored
View File

@ -30,15 +30,8 @@ pipeline {
script {
implementations.each { implementation ->
stage("Test ${implementation} primitives") {
agent {
dockerfile {
filename 'Dockerfile.test'
additionalBuildArgs "--build-arg COMPILE_R7RS=${implementation}"
args '--user=root'
}
}
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "make test-compile-r7rs COMPILE_R7RS=${implementation} TESTNAME=primitives"
sh "make test-compile-r7rs-docker COMPILE_R7RS=${implementation} TESTNAME=primitives"
}
}
}