Fixing tests
This commit is contained in:
parent
0f0d42f0dc
commit
79fc6b56d3
|
@ -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
|
||||
|
|
|
@ -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}"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue