From 9c6e59bfa383435e8c0f77902a7b0cf18fa70933 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Fri, 28 Feb 2025 14:05:42 +0200 Subject: [PATCH] Fixing testing --- Jenkinsfile | 7 +++++++ build.scm | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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"