Testing dynamic Jenkinsfile

This commit is contained in:
retropikzel 2025-06-05 22:59:49 +03:00
parent 866bf512a2
commit 6a8bff28a4
1 changed files with 7 additions and 9 deletions

4
Jenkinsfile vendored
View File

@ -14,7 +14,6 @@ pipeline {
steps {
script {
implementations.each { implementation ->
stage("${implementation} primitives") {
agent {
dockerfile {
filename 'Dockerfile.test'
@ -22,7 +21,7 @@ pipeline {
additionalBuildArgs "--build-arg COMPILE_R7RS=${implementation}"
}
}
steps {
stage("${implementation} primitives") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
echo "hello"
}
@ -32,5 +31,4 @@ pipeline {
}
}
}
}
}