From bfe064fba1e98e2c33a5f1da00289b230b442aea Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 5 Jun 2025 22:50:40 +0300 Subject: [PATCH] Testing dynamic Jenkinsfile --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f036825..cf84d40 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,8 +16,7 @@ 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 ${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\"" + sh "docker run -v ${WORKSPACE}:/workdir -w /workdir -t r7rs-pffi-test-${implementation} sh -c \"make COMPILE_R7RS=${implementation} TESTNAME=primitives test-compile-r7rs\"" } } }