Skip to content

Commit

Permalink
ci: add make update to for other platforms
Browse files Browse the repository at this point in the history
This was added to fix some build issues to Linux:
status-im#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 <[email protected]>
  • Loading branch information
jakubgs authored and iurimatias committed Nov 14, 2022
1 parent 707aa16 commit 6fa84fb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
3 changes: 0 additions & 3 deletions ci/Jenkinsfile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
Expand Down
4 changes: 1 addition & 3 deletions ci/Jenkinsfile.macos
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 1 addition & 3 deletions ci/Jenkinsfile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
Expand Down

0 comments on commit 6fa84fb

Please sign in to comment.