Remaking the Jenkinsfile

This commit is contained in:
retropikzel 2025-05-15 21:17:59 +03:00
parent 3b65f84d0f
commit ad632272d0
1 changed files with 2 additions and 14 deletions

16
Jenkinsfile vendored
View File

@ -8,20 +8,8 @@ pipeline {
stages {
stage('Chibi primitives') {
agent {
dockerfile {
filename 'Dockerfile.test'
additionalBuildArgs '--build-arg COMPILE_R7RS=chibi'
}
}
environment {
COMPILE_R7RS = "chibi"
}
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-compile-r7rs COMPILE_R7RS=chibi TESTNAME=primitives'
}
}
agent { dockerfile { filename 'Dockerfile.test', additionalBuildArgs '--build-arg COMPILE_R7RS=chibi' } }
steps { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { sh 'make test-compile-r7rs COMPILE_R7RS=chibi TESTNAME=primitives' } }
}
}
}