Fixing tests

This commit is contained in:
retropikzel 2025-10-17 08:22:28 +03:00
parent 25f9948891
commit 3161e23182
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,7 @@ WORKDIR /build
RUN apt-get update && apt-get install -y gcc make libffi-dev
WORKDIR /build/chibi-scheme
RUN make install
RUN mkdir -p ${HOME}/.snow && echo "()" > ${HOME}/.snow/config.scm
RUN snow-chibi install --always-yes "(foreign c)"
RUN snow-chibi install --always-yes "(srfi 170)"
WORKDIR /build/compile-r7rs
@ -23,5 +24,4 @@ RUN make build-chibi && make install
WORKDIR /workdir
ARG SCHEME=chibi
ENV COMPILE_R7RS=${SCHEME}
RUN mkdir -p ${HOME}/.snow && echo "()" > ${HOME}/.snow/config.scm
RUN snow-chibi install --always-yes --impls=${SCHEME} "(srfi 64)"