ci: add make update to for other platforms
This was added to fix some build issues to Linux: https://github.com/status-im/status-desktop/pull/8233 But other 2 platforms also have had the cleanup stage change which could have cause these submodules update issues. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
707aa16462
commit
6fa84fb221
|
@ -59,9 +59,6 @@ pipeline {
|
||||||
stage('Deps') {
|
stage('Deps') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make update'
|
sh 'make update'
|
||||||
/* trigger fetching of git submodules */
|
|
||||||
sh 'make check-pkg-target-linux'
|
|
||||||
/* TODO: Re-add caching of Nim compiler. */
|
|
||||||
sh 'make deps'
|
sh 'make deps'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,9 +55,7 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage('Deps') {
|
stage('Deps') {
|
||||||
steps {
|
steps {
|
||||||
/* trigger fetching of git submodules */
|
sh 'make update'
|
||||||
sh 'make check-pkg-target-macos'
|
|
||||||
/* TODO: Re-add caching of Nim compiler. */
|
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword( /* For fetching HomeBrew bottles. */
|
usernamePassword( /* For fetching HomeBrew bottles. */
|
||||||
credentialsId: "status-im-auto-pkgs",
|
credentialsId: "status-im-auto-pkgs",
|
||||||
|
|
|
@ -52,9 +52,7 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage('Deps') {
|
stage('Deps') {
|
||||||
steps {
|
steps {
|
||||||
/* trigger fetching of git submodules */
|
sh 'make update'
|
||||||
sh 'make check-pkg-target-windows'
|
|
||||||
/* TODO: Re-add caching of Nim compiler. */
|
|
||||||
sh 'make deps'
|
sh 'make deps'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue