diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index d565fa7bcc..3889e6d61a 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -34,7 +34,7 @@ pipeline { } stages { - stage('Modules') { + stage('Deps') { steps { /* avoid re-compiling Nim by using cache */ cache(maxCacheSize: 250, caches: [[ @@ -42,15 +42,11 @@ pipeline { includes: '**/*', path: 'vendor/nimbus-build-system/vendor/Nim/bin' ]]) { - sh 'make update' + sh 'make deps' } } } - stage('Deps') { - steps { sh 'make deps' } - } - stage('status-go') { steps { sh 'make status-go' } } diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 6b5683cb6f..3286b6ccb1 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -30,7 +30,7 @@ pipeline { } stages { - stage('Modules') { + stage('Deps') { steps { /* avoid re-compiling Nim by using cache */ cache(maxCacheSize: 250, caches: [[ @@ -38,15 +38,11 @@ pipeline { includes: '**/*', path: 'vendor/nimbus-build-system/vendor/Nim/bin' ]]) { - sh 'make update' + sh 'make deps' } } } - stage('Deps') { - steps { sh 'make deps' } - } - stage('status-go') { steps { sh 'make status-go' } } diff --git a/ci/Jenkinsfile.windows b/ci/Jenkinsfile.windows index 26a39b8d25..23cec6988e 100644 --- a/ci/Jenkinsfile.windows +++ b/ci/Jenkinsfile.windows @@ -40,7 +40,7 @@ pipeline { } stages { - stage('Modules') { + stage('Deps') { steps { /* avoid re-compiling Nim by using cache */ cache(maxCacheSize: 250, caches: [[ @@ -48,15 +48,11 @@ pipeline { includes: '**/*', path: 'vendor/nimbus-build-system/vendor/Nim/bin' ]]) { - sh 'make update' + sh 'make deps' } } } - stage('Deps') { - steps { sh 'make deps' } - } - stage('status-go') { steps { sh 'make status-go' } }