diff --git a/Jenkinsfile b/Jenkinsfile index f5d3a58..98435bd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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') { diff --git a/build.scm b/build.scm index 9073afe..d60cda1 100644 --- a/build.scm +++ b/build.scm @@ -41,7 +41,7 @@ (define compiler-implementations (vector "chicken" "cyclone" - ;"gambit" + "gambit" ;"gauche" ;"gerbil" "kawa"