Fixing builds

This commit is contained in:
retropikzel 2025-02-14 10:15:41 +02:00
parent 1a618a886d
commit 91713a548c
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -7,9 +7,6 @@ pipeline {
} }
} }
environment {
DOCKER=docker run -v ${PWD}:/workdir
}
options { options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10')) buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
@ -45,6 +42,9 @@ pipeline {
} }
} }
stage('Guile') { stage('Guile') {
environment {
DOCKER=docker run -v ${PWD}:/workdir
}
steps { steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-guile-docker' sh 'make test-guile-docker'