diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index b1bf49c8c6..bb71f3f180 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -53,14 +53,8 @@ pipeline { steps { /* trigger fetching of git submodules */ sh 'make check-pkg-target-linux' - /* avoid re-compiling Nim by using cache */ - cache(maxCacheSize: 250, caches: [[ - $class: 'ArbitraryFileCache', - includes: '**/*', - path: 'vendor/nimbus-build-system/vendor/Nim/bin' - ]]) { - sh 'make deps' - } + /* TODO: Re-add caching of Nim compiler. */ + sh 'make deps' } } diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 6a81ae0770..8ef01e7a95 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -50,21 +50,15 @@ pipeline { steps { /* trigger fetching of git submodules */ sh 'make check-pkg-target-macos' - /* avoid re-compiling Nim by using cache */ - cache(maxCacheSize: 250, caches: [[ - $class: 'ArbitraryFileCache', - includes: '**/*', - path: 'vendor/nimbus-build-system/vendor/Nim/bin' - ]]) { - withCredentials([ - usernamePassword( /* For fetching HomeBrew bottles. */ - credentialsId: "status-im-auto-pkgs", - usernameVariable: 'GITHUB_USER', - passwordVariable: 'GITHUB_TOKEN' - ) - ]) { - sh 'make deps' - } + /* TODO: Re-add caching of Nim compiler. */ + withCredentials([ + usernamePassword( /* For fetching HomeBrew bottles. */ + credentialsId: "status-im-auto-pkgs", + usernameVariable: 'GITHUB_USER', + passwordVariable: 'GITHUB_TOKEN' + ) + ]) { + sh 'make deps' } } } diff --git a/ci/Jenkinsfile.windows b/ci/Jenkinsfile.windows index d30b35e2a4..8c58e5a0de 100644 --- a/ci/Jenkinsfile.windows +++ b/ci/Jenkinsfile.windows @@ -47,14 +47,8 @@ pipeline { steps { /* trigger fetching of git submodules */ sh 'make check-pkg-target-windows' - /* avoid re-compiling Nim by using cache */ - cache(maxCacheSize: 250, caches: [[ - $class: 'ArbitraryFileCache', - includes: '**/*', - path: 'vendor/nimbus-build-system/vendor/Nim/bin' - ]]) { - sh 'make deps' - } + /* TODO: Re-add caching of Nim compiler. */ + sh 'make deps' } }