From 6f5ac95440e6bd71ba4439adbcd46dd4dbea8a8b Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sat, 27 Jun 2026 17:49:07 +0300 Subject: [PATCH] Fix jenkins tests --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d41163d..4005dc6 100644 --- a/Makefile +++ b/Makefile @@ -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}" \