Making the build work

This commit is contained in:
retropikzel 2025-04-18 08:00:09 +03:00
parent 899863a9e0
commit b29c6906ce
1 changed files with 3 additions and 6 deletions

9
Jenkinsfile vendored
View File

@ -5,12 +5,7 @@ pipeline {
}
stages {
stage("Build") {
agent {
docker {
image 'schemers/sagittarius'
args '--user=root'
}
}
agent { docker { image 'schemers/sagittarius' args '--user=root' } }
steps {
sh 'apt-get update && apt-get install -y make libuv1'
sh 'make'
@ -20,8 +15,10 @@ pipeline {
}
}
stage("Test chez r6rs") {
agent { docker { image 'schemers/chezscheme' args '--user=root' } }
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'apt-get update && apt-get install -y make libuv1'
sh 'make COMPILE_R7RS=chibi test-r6rs-docker'
}
}