Fix jenkins tests

This commit is contained in:
retropikzel 2026-06-27 17:49:07 +03:00
parent b5c2c2518d
commit 6f5ac95440
1 changed files with 5 additions and 3 deletions

View File

@ -36,7 +36,9 @@ package: srfi/${SRFI}/LICENSE srfi/${SRFI}/VERSION
install:
snow-chibi install --impls=${SCHEME} ${PKG}
testfiles:
${PKG}: package
testfiles: ${PKG}
rm -rf .tmp
mkdir -p .tmp
cp ${PKG} .tmp
@ -50,11 +52,11 @@ testfiles:
fi; \
fi
test: testfiles package
test: testfiles
cd .tmp && COMPILE_R7RS=${SCHEME} compile-r7rs -o test-program test.${SFX}
cd .tmp && ./test-program
test-docker: testfiles package
test-docker: testfiles
cd .tmp && \
DOCKER_TAG=${DOCKER_TAG} \
SNOW_PACKAGES="srfi.64 ${PKG}" \