From 975f685b0a02185195718c55bc68387a4ae51cf5 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sun, 28 Jun 2026 09:06:30 +0300 Subject: [PATCH] Fixing tests --- Jenkinsfile | 2 +- Makefile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2c24c32..b93d6ac 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -60,7 +60,7 @@ pipeline { env.R7RS_SCHEMES.split().each { SCHEME -> stage("${SCHEME} ${SRFI}") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "make SCHEME=${SCHEME} SRFI=${SRFI} RNRS=r6rs test-docker" + sh "make SCHEME=${SCHEME} SRFI=${SRFI} RNRS=r7rs test-docker" } } } diff --git a/Makefile b/Makefile index a9f6087..595f1e7 100644 --- a/Makefile +++ b/Makefile @@ -56,6 +56,7 @@ test-docker: testfiles cd .tmp && \ DOCKER_TAG=${DOCKER_TAG} \ SNOW_PACKAGES="srfi.64 ${PKG}" \ + AKKU_PACKAGES="akku-r7rs chez-srfi" \ APT_PACKAGES="libcurl4-openssl-dev" \ COMPILE_R7RS=${SCHEME} \ TEST_R7RS_DEBUG=1 \