From aae1d920f6d1ba9a21cb5797964ebf6aee7b88d9 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Thu, 5 Jun 2025 23:13:56 +0300 Subject: [PATCH] Testing dynamic Jenkinsfile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 99fc928..a8fe1d0 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,9 @@ test-compile-r7rs: tmp/test/libtest.o tmp/test/libtest.so tmp/test/libtest.a COMPILE_R7RS_GAMBIT="-cc-options \"-ltest -I. -L\" -ld-options \"-L.\"" \ COMPILE_R7RS_CHICKEN="-L -ltest -I. -L." \ compile-r7rs -I . -o ${TESTNAME} ${TESTNAME}.scm - #cd tmp/test && LD_LIBRARY_PATH=. ./${TESTNAME} + cd tmp/test && \ + LD_LIBRARY_PATH=. \ + ./${TESTNAME} test-compile-r7rs-docker: docker build --build-arg COMPILE_R7RS=${COMPILE_R7RS} --tag=r7rs-pffi-test-${COMPILE_R7RS} -f Dockerfile.test .