Making the build work

This commit is contained in:
retropikzel 2025-04-18 07:57:43 +03:00
parent b779a353ac
commit b8faab6b3e
1 changed files with 1 additions and 2 deletions

3
Jenkinsfile vendored
View File

@ -12,7 +12,7 @@ pipeline {
}
}
steps {
sh 'apt-get update && apt-get install -y make'
sh 'apt-get update && apt-get install -y make libuv1'
sh 'make'
sh 'make install'
sh 'make SCHEME=sagittarius test-r6rs'
@ -22,7 +22,6 @@ pipeline {
stage("Test chez r6rs") {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'apt-get update && apt-get install -y make'
sh 'make SCHEME=chibi test-r6rs-docker'
}
}