Testing dynamic Jenkinsfile

This commit is contained in:
retropikzel 2025-06-05 23:18:55 +03:00
parent 7eb2d8603d
commit d04692fdd4
1 changed files with 5 additions and 6 deletions

11
Jenkinsfile vendored
View File

@ -4,14 +4,13 @@ def tests = ['primitives', 'addressof', 'callback']
pipeline { pipeline {
agent any agent any
options { options {
disableConcurrentBuilds() disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10')) buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
} }
stages { stages {
stage('Tests') { stage('Tests') {
}
steps { steps {
script { script {
implementations.each { implementation-> implementations.each { implementation->
@ -19,7 +18,7 @@ pipeline {
stage("${STAGE_NAME} ${test}") { stage("${STAGE_NAME} ${test}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "docker build --build-arg COMPILE_R7RS=${implementation} --tag=r7rs-pffi-test-${implementation} -f Dockerfile.test ." 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 \"make COMPILE_R7RS=${implementation} TESTNAME=primitives test-compile-r7rs\""
} }
} }
} }