Fixing testing

This commit is contained in:
retropikzel 2025-02-28 14:05:42 +02:00
parent 71603a2e38
commit 9c6e59bfa3
2 changed files with 8 additions and 1 deletions

7
Jenkinsfile vendored
View File

@ -108,6 +108,13 @@ pipeline {
}
}
}
stage('gambit compile') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make SCHEME=gambit test-compile-docker'
}
}
}
stage('kawa compile') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {

View File

@ -41,7 +41,7 @@
(define compiler-implementations
(vector "chicken"
"cyclone"
;"gambit"
"gambit"
;"gauche"
;"gerbil"
"kawa"