Fixing Jenkins tests

This commit is contained in:
retropikzel 2025-07-09 23:04:27 +03:00
parent 16d9e78eb2
commit 558c9b08bb
2 changed files with 9 additions and 8 deletions

View File

@ -1,8 +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://gitea.scheme.org/Retropikzel/compile-r7rs.git --depth=1
FROM debian:bookworm AS build
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 ls
RUN cd compile-r7rs && make && make install

View File

@ -1,8 +1,9 @@
ARG SCHEME=chibi
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://gitea.scheme.org/Retropikzel/compile-r7rs.git --depth=1
FROM debian:bookworm AS build
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 ls
RUN cd compile-r7rs && make && make install
ARG SCHEME=chibi