From db3b1226cf698e979fd277af9ebdb43da68beb71 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Fri, 26 Sep 2025 14:48:02 +0300 Subject: [PATCH] Updating tests --- Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 1495d80..eccbd5a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,6 +30,11 @@ pipeline { sh "COMPILE_R7RS=${SCHEME} test-r7rs test.scm" } } + stage("${SCHEME} logs") { + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh "cat .test-r7rs/${SCHEME}/logs/*.log" + } + } } } }