Fixing tests

This commit is contained in:
retropikzel 2025-07-15 06:11:05 +03:00
parent 0f0d42f0dc
commit 79fc6b56d3
2 changed files with 3 additions and 3 deletions

View File

@ -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

4
Jenkinsfile vendored
View File

@ -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}"
}
}
}