Fix typo
ogcore-debian-package/pipeline/head There was a failure building this commit
Details
ogcore-debian-package/pipeline/head There was a failure building this commit
Details
parent
6ce1f99a3e
commit
fc91dd08ac
|
@ -4,7 +4,10 @@ pipeline {
|
||||||
}
|
}
|
||||||
environment {
|
environment {
|
||||||
DEBIAN_FRONTEND = 'noninteractive'
|
DEBIAN_FRONTEND = 'noninteractive'
|
||||||
BUILD_DIR = "${WORKSPACE}/source"
|
BUILD_DIR = "${WORKSPACE}/ogcore"
|
||||||
|
}
|
||||||
|
opfions {
|
||||||
|
skipDefaultCheckout()
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('Checkout') {
|
stage('Checkout') {
|
||||||
|
@ -23,7 +26,7 @@ pipeline {
|
||||||
sh '''
|
sh '''
|
||||||
composer require symfony/flex
|
composer require symfony/flex
|
||||||
dpkg-buildpackage -us -uc
|
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
|
archiveArtifacts artifacts: 'artifacts/*.deb', fingerprint: true
|
||||||
|
|
Loading…
Reference in New Issue