From 6fa84fb22177dadaaf9e99361b7bf1a11db24c72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 14 Nov 2022 20:13:18 +0100 Subject: [PATCH] ci: add make update to for other platforms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- ci/Jenkinsfile.linux | 3 --- ci/Jenkinsfile.macos | 4 +--- ci/Jenkinsfile.windows | 4 +--- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index 167529594b..c418f220a0 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -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' } } diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 2bcfd524f1..9455ed3468 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -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", diff --git a/ci/Jenkinsfile.windows b/ci/Jenkinsfile.windows index 166616d150..ad963c086b 100644 --- a/ci/Jenkinsfile.windows +++ b/ci/Jenkinsfile.windows @@ -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' } }