From b8faab6b3e99417506a4887da7f4f7e2820b84e3 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Fri, 18 Apr 2025 07:57:43 +0300 Subject: [PATCH] Making the build work --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3ebc4c9..7c92579 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } }