ci: drop running make update, CI already fetches submodules

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-09-28 21:24:21 +02:00 committed by Jakub
parent 8717a86ff8
commit ef4c84afe1
3 changed files with 6 additions and 18 deletions

View File

@ -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' }
}

View File

@ -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' }
}

View File

@ -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' }
}