Skip to content

Commit

Permalink
Move fetch call to second code collect
Browse files Browse the repository at this point in the history
  • Loading branch information
nikola-rados committed Dec 6, 2019
1 parent 663a448 commit b197dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ def clean_local_image(image_name) {
node {
stage('Code Collection') {
checkout scm
sh 'git fetch'
}

// Run the Python test suite
Expand All @@ -130,6 +129,7 @@ node {

stage('Re-collect Code') {
checkout scm
sh 'git fetch'
}

// Define image items
Expand Down

0 comments on commit b197dba

Please sign in to comment.