Delay content download in Jenkins pipeline to save disk space
This commit is contained in:
parent
6166135f4a
commit
159206b298
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue