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:
Jakub Sokołowski 2022-11-14 20:13:18 +01:00 committed by Iuri Matias
parent 707aa16462
commit 6fa84fb221
3 changed files with 2 additions and 9 deletions

View File

@ -59,9 +59,6 @@ pipeline {
stage('Deps') {
steps {
sh 'make update'
/* trigger fetching of git submodules */
sh 'make check-pkg-target-linux'
/* TODO: Re-add caching of Nim compiler. */
sh 'make deps'
}
}

View File

@ -55,9 +55,7 @@ pipeline {
stages {
stage('Deps') {
steps {
/* trigger fetching of git submodules */
sh 'make check-pkg-target-macos'
/* TODO: Re-add caching of Nim compiler. */
sh 'make update'
withCredentials([
usernamePassword( /* For fetching HomeBrew bottles. */
credentialsId: "status-im-auto-pkgs",

View File

@ -52,9 +52,7 @@ pipeline {
stages {
stage('Deps') {
steps {
/* trigger fetching of git submodules */
sh 'make check-pkg-target-windows'
/* TODO: Re-add caching of Nim compiler. */
sh 'make update'
sh 'make deps'
}
}