From 8a90bf09014d2d9c23a1918f9a60385aa94b82cd Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 5 Jun 2025 21:50:34 +0300 Subject: [PATCH] Testing dynamic Jenkinsfile --- Jenkinsfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bec6dcb..b35db74 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,15 +30,8 @@ pipeline { script { implementations.each { implementation -> stage("Test ${implementation} primitives") { - agent { - dockerfile { - filename 'Dockerfile.test' - additionalBuildArgs "--build-arg COMPILE_R7RS=${implementation}" - args '--user=root' - } - } catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "make test-compile-r7rs COMPILE_R7RS=${implementation} TESTNAME=primitives" + sh "make test-compile-r7rs-docker COMPILE_R7RS=${implementation} TESTNAME=primitives" } } }