From 953e30c234485fbc8c5672d2cdd43a5c2fdd46d9 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Wed, 29 Oct 2025 19:00:00 +0200 Subject: [PATCH] Fixing tests --- Jenkinsfile | 2 +- Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0955627..a292d88 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,7 +42,7 @@ pipeline { } post { always { - archiveArtifacts artifacts: "*.log", allowEmptyArchive: true + archiveArtifacts artifacts: "tmp/*/*.log", allowEmptyArchive: true } } } diff --git a/Makefile b/Makefile index c32bc78..b9430d6 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,6 @@ test: ${TMPDIR} echo "Hello" cd ${TMPDIR} && COMPILE_R7RS=${SCHEME} compile-r7rs -I . -o test test.scm cd ${TMPDIR} && printf "\n" | ./test - cp ${TMPDIR}/foreign-c-${LIBRARY}.log ${SCHEME}-foreign-c-${LIBRARY}.log test-docker: ${TMPDIR} docker build --build-arg IMAGE=${DOCKERIMG} --build-arg SCHEME=${SCHEME} --tag=foreign-c-library-test-${SCHEME} -f Dockerfile.test . 2> ${TMPDIR}/docker.log || cat ${TMPDIR}/docker.log