Fix typo
ogcore-debian-package/pipeline/head There was a failure building this commit Details

fix_mercure_in_containers
Nicolas Arenas 2025-03-13 23:39:34 +01:00
parent 6ce1f99a3e
commit fc91dd08ac
1 changed files with 5 additions and 2 deletions

View File

@ -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