Compare commits

...

2 Commits

Author SHA1 Message Date
retropikzel 95bcbe4f8a Test most libraries on latest docker tags 2026-07-04 16:39:01 +03:00
retropikzel 01516b60d8 Fix Jenkins tests 2026-07-04 13:04:23 +03:00
2 changed files with 15 additions and 3 deletions

View File

@ -1,5 +1,4 @@
FROM schemers/chibi:head FROM schemers/chibi:head
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
gcc ca-certificates libffi-dev docker.io make gcc ca-certificates libffi-dev docker.io make
ARG timestamp=0 RUN snow-chibi install --impls=chibi retropikzel.test-r7rs
RUN snow-chibi install --impls=chibi retropikzel.test-r7rs && echo "$timestamp"

View File

@ -2,7 +2,8 @@
SCHEME=chibi SCHEME=chibi
RNRS=r7rs RNRS=r7rs
LIBRARY=ctrf LIBRARY=ctrf
VENV=venv-${SCHEME}-${RNRS}-${LIBRARY} DOCKER_TAG=head
AUTHOR=retropikzel AUTHOR=retropikzel
PKG=${AUTHOR}-${LIBRARY}-${VERSION}.tgz PKG=${AUTHOR}-${LIBRARY}-${VERSION}.tgz
tmpdir=.tmp/${SCHEME}/${LIBRARY} tmpdir=.tmp/${SCHEME}/${LIBRARY}
@ -18,7 +19,19 @@ ifeq "${RNRS}" "r6rs"
SFX=sps SFX=sps
endif endif
ifeq "${SCHEME}" "capyscheme"
DOCKER_TAG=head DOCKER_TAG=head
endif
ifeq "${SCHEME}" "chibi"
DOCKER_TAG=head
endif
ifeq "${SCHEME}" "chicken"
DOCKER_TAG=head
endif
ifeq "${SCHEME}" "gauche"
DOCKER_TAG=head
endif
all: package all: package