From fc91dd08acbbd9720ca79f785a147bf537da1274 Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Thu, 13 Mar 2025 23:39:34 +0100 Subject: [PATCH] Fix typo --- Jenkins/Jenkinsfile-deb-pkg | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Jenkins/Jenkinsfile-deb-pkg b/Jenkins/Jenkinsfile-deb-pkg index a4774b3..2a0aa75 100644 --- a/Jenkins/Jenkinsfile-deb-pkg +++ b/Jenkins/Jenkinsfile-deb-pkg @@ -4,7 +4,10 @@ pipeline { } environment { DEBIAN_FRONTEND = 'noninteractive' - BUILD_DIR = "${WORKSPACE}/source" + BUILD_DIR = "${WORKSPACE}/ogcore" + } + opfions { + skipDefaultCheckout() } stages { stage('Checkout') { @@ -23,7 +26,7 @@ pipeline { sh ''' composer require symfony/flex dpkg-buildpackage -us -uc - sh 'mkdir -p ../artifacts && mv ../*.deb ../*.changes ../*.buildinfo ../artifacts/' + mkdir -p ../artifacts && mv ../*.deb ../*.changes ../*.buildinfo ../artifacts/ ''' } archiveArtifacts artifacts: 'artifacts/*.deb', fingerprint: true