Testing dynamic Jenkinsfile

This commit is contained in:
retropikzel 2025-06-05 22:50:20 +03:00
parent 08f8cb1063
commit 1bc0c18fa1
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -16,8 +16,8 @@ pipeline {
implementations.each { implementation ->
stage("${implementation} primitives") {
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=primitives test-compile-r7rs\""
sh "docker run -v ${PWD}:/workdir -w /workdir -t r7rs-pffi-test-${implementation} sh -c \"ls\""
//sh "docker run -v ${WORKSPACE}:/workdir -w /workdir -t r7rs-pffi-test-${implementation} sh -c \"make COMPILE_R7RS=${implementation} TESTNAME=primitives test-compile-r7rs\""
sh "docker run -v ${WORKSPACE}:/workdir -w /workdir -t r7rs-pffi-test-${implementation} sh -c \"ls\""
}
}
}