Bring things to new compile-r7rs

This commit is contained in:
retropikzel 2025-07-19 18:36:54 +03:00
parent ef75b4c4f7
commit f2b8ae0590
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -19,10 +19,10 @@ pipeline {
[(implementation): {
stage("${implementation} install") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
if("${SCHEME}" == "chicken") {
DOCKERIMG="${SCHEME}:5"
if("${implementation}" == "chicken") {
DOCKERIMG="${implementation}:5"
} else {
DOCKERIMG="${SCHEME}:head"
DOCKERIMG="${implementation}:head"
}
sh "docker build --build-arg IMAGE=${DOCKERIMG} --build-arg SCHEME=${implementation} --tag=foreign-c-test-${implementation} -f dockerfiles/Dockerfile.snow-chibi-install-test ."
sh "docker run -v ${WORKSPACE}:/workdir -w /workdir -t foreign-c-test-${implementation} sh -c \"timeout 120 make clean all install-jenkins SCHEME=${implementation} && cp tests/hello.scm /tmp/ && cd /tmp && SCHEME=${implementation} timeout 120 compile-r7rs -o hello hello.scm && timeout 120 ./hello\""