foreign-c/Jenkinsfile

21 lines
607 B
Groovy

def implementations = ['chibi', 'chicken']
pipeline {
agent any
stages {
stage('Testing') {
steps {
script {
implementations.each { implementation ->
stage("Test ${implementation} primitives") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-compile-r7rs-docker COMPILE_R7RS=chibi TESTNAME=primitives'
}
}
}
}
}
}
}
}