ci: drop running make update, CI already fetches submodules
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
8717a86ff8
commit
ef4c84afe1
|
@ -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' }
|
||||
}
|
||||
|
|
|
@ -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' }
|
||||
}
|
||||
|
|
|
@ -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' }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue