From add13aacd143c04f0458e8094a7738aafb27a9d2 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 5 Jun 2025 23:12:28 +0300 Subject: [PATCH] Testing dynamic Jenkinsfile --- Jenkinsfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f8dd71d..5984385 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,13 +10,6 @@ pipeline { stages { stage('chibi') { - agent { - dockerfile { - filename 'Dockerfile.test' - args '--user=root' - additionalBuildArgs "--build-arg COMPILE_R7RS=${STAGE_NAME}" - } - } environment { IMPLEMENTATION="${STAGE_NAME}" } @@ -25,7 +18,7 @@ pipeline { tests.each { test -> stage("${STAGE_NAME} ${test}") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "make test-compile-r7rs COMPILE_R7RS=${env.IMPLEMENTATION} TESTNAME=${test}" + sh "make test-compile-r7rs-docker COMPILE_R7RS=${env.IMPLEMENTATION} TESTNAME=${test}" sh "cat tmp/test/primitives" } }