Fixing Jenkins tests

This commit is contained in:
retropikzel 2025-07-09 22:48:38 +03:00
parent 6662b247db
commit a1a97b617d
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,8 @@
ARG SCHEME=chibi
FROM schemers/chicken AS build
RUN apt-get update && apt-get install -y git make
RUN git clone https://github.com/Retropikzel/compile-r7rs.git --depth=1
#RUN git clone https://github.com/Retropikzel/compile-r7rs.git --depth=1
RUN git clone https://gitea.scheme.org/Retropikzel/compile-r7rs.git --depth=1
RUN cd compile-r7rs && make && make install
ARG SCHEME=chibi

View File

@ -1,7 +1,8 @@
ARG SCHEME=chibi
FROM schemers/chicken AS build
FROM schemers/chicken:5 AS build
RUN apt-get update && apt-get install -y git make
RUN git clone https://github.com/Retropikzel/compile-r7rs.git --depth=1
#RUN git clone https://github.com/Retropikzel/compile-r7rs.git --depth=1
RUN git clone https://gitea.scheme.org/Retropikzel/compile-r7rs.git --depth=1
RUN cd compile-r7rs && make && make install
ARG SCHEME=chibi