From 558c9b08bb1ce779878211227af15ae3fa3506b6 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 9 Jul 2025 23:04:27 +0300 Subject: [PATCH] Fixing Jenkins tests --- dockerfiles/Dockerfile.snow-chibi-install-test | 8 ++++---- dockerfiles/Dockerfile.test | 9 +++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/dockerfiles/Dockerfile.snow-chibi-install-test b/dockerfiles/Dockerfile.snow-chibi-install-test index 2021f1c..1af0066 100644 --- a/dockerfiles/Dockerfile.snow-chibi-install-test +++ b/dockerfiles/Dockerfile.snow-chibi-install-test @@ -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 diff --git a/dockerfiles/Dockerfile.test b/dockerfiles/Dockerfile.test index 2005a07..67e66a8 100644 --- a/dockerfiles/Dockerfile.test +++ b/dockerfiles/Dockerfile.test @@ -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