Testing dynamic Jenkinsfile

This commit is contained in:
retropikzel 2025-06-05 22:45:26 +03:00
parent d2fbc94c18
commit c81848ca41
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -20,8 +20,8 @@ pipeline {
script {
implementations.each { implementation ->
stage("${implementation} primitives") {
sh "docker build --build-arg COMPILE_R7RS=${COMPILE_R7RS} --tag=r7rs-pffi-test-${COMPILE_R7RS} -f Dockerfile.test ."
sh "docker run -v ${PWD}:/workdir -w /workdir -t r7rs-pffi-test-${COMPILE_R7RS} sh -c \"make COMPILE_R7RS=${COMPILE_R7RS} TESTNAME=${TESTNAME} test-compile-r7rs\""
sh "docker build --build-arg COMPILE_R7RS=${implementation} --tag=r7rs-pffi-test-${implementation} -f Dockerfile.test ."
sh "docker run -v ${PWD}:/workdir -w /workdir -t r7rs-pffi-test-${implementation} sh -c \"make COMPILE_R7RS=${implementation} TESTNAME=${TESTNAME} test-compile-r7rs\""
}
}
}