From 79fc6b56d368fab114976f72a743d2c2297f2633 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Tue, 15 Jul 2025 06:11:05 +0300 Subject: [PATCH] Fixing tests --- Dockerfile | 2 +- Jenkinsfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 201b87f..1f03e36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y \ RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1 \ && cd chibi-scheme && make -j 16 && make -j 16 install WORKDIR /builddir -COPY Makefile Makefile +COPY Makefile . COPY compile-r7rs.scm . COPY libs/ libs/ RUN make && make install diff --git a/Jenkinsfile b/Jenkinsfile index 9067630..00b8119 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { r6rs_implementations.each { implementation-> stage("${implementation} R6RS") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "make test-r6rs-docker COMPILE_R7RS=${implementation}" + sh "make test-r6rs-docker SCHEME=${implementation}" } } } @@ -34,7 +34,7 @@ pipeline { r7rs_implementations.each { implementation-> stage("${implementation} R7RS") { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh "timeout 600 make test-r7rs-docker COMPILE_R7RS=${implementation}" + sh "timeout 600 make test-r7rs-docker SCHEME=${implementation}" } } }