From 7eb54ddfddd6c918351a122c72e9274f040ebb93 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 10 Jul 2025 21:05:30 +0300 Subject: [PATCH] Speeding up the tests --- dockerfiles/Dockerfile.snow-chibi-install-test | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dockerfiles/Dockerfile.snow-chibi-install-test b/dockerfiles/Dockerfile.snow-chibi-install-test index 8abbb10..391591e 100644 --- a/dockerfiles/Dockerfile.snow-chibi-install-test +++ b/dockerfiles/Dockerfile.snow-chibi-install-test @@ -4,6 +4,8 @@ RUN apt-get update && apt-get install -y git make chicken-bin build-essential RUN chicken-install r7rs RUN git clone https://github.com/Retropikzel/compile-r7rs.git --depth=1 RUN cd compile-r7rs && make && make install +RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1 +RUN cd chibi-scheme && make && make PREFIX=/usr/local-other install ARG SCHEME=chibi FROM schemers/${SCHEME}:head @@ -21,8 +23,8 @@ RUN apt-get update && apt-get install -y \ markdown \ pandoc \ weasyprint -RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1 -RUN cd chibi-scheme && make && make install +COPY --from=build /usr/local-other /usr/local-other +ENV PATH=/usr/local-other/bin:${PATH} COPY --from=build /usr/local/bin/compile-r7rs /usr/local/bin/compile-r7rs ARG SCHEME=chibi ENV COMPILE_R7RS=${SCHEME}