Delay content download in Jenkins pipeline to save disk space

This commit is contained in:
nsubiron 2019-01-26 14:27:17 +01:00
parent 6166135f4a
commit 159206b298
1 changed files with 6 additions and 1 deletions

7
Jenkinsfile vendored
View File

@ -14,7 +14,6 @@ pipeline {
stage('Setup') {
steps {
sh 'make setup'
sh './Update.sh'
}
}
@ -43,6 +42,12 @@ pipeline {
}
}
stage('Retrieve Content') {
steps {
sh './Update.sh'
}
}
stage('Package') {
steps {
sh 'make package'