From e8b956d4f400bbba8f874a3a849e9cb549790456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 30 May 2023 17:05:10 +0200 Subject: [PATCH] ci: fix jsbundle target name for nix-cache build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Forgot to update this in: https://github.com/status-im/status-mobile/pull/15924 Signed-off-by: Jakub SokoĊ‚owski --- ci/{ => tools}/Jenkinsfile.nix-cache | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) rename ci/{ => tools}/Jenkinsfile.nix-cache (89%) diff --git a/ci/Jenkinsfile.nix-cache b/ci/tools/Jenkinsfile.nix-cache similarity index 89% rename from ci/Jenkinsfile.nix-cache rename to ci/tools/Jenkinsfile.nix-cache index 43c4a78cfb..537216745f 100644 --- a/ci/Jenkinsfile.nix-cache +++ b/ci/tools/Jenkinsfile.nix-cache @@ -61,10 +61,9 @@ pipeline { } stage('Build android jsbundle') { steps { script { - /* build/fetch things required to produce a js-bundle for android - * (e.g. maven and node repos) */ + /* Build/fetch deps required for jsbundle build. */ nix.build( - attr: 'targets.mobile.android.jsbundle', + attr: 'targets.mobile.jsbundle', sandbox: false, pure: false, link: false @@ -73,7 +72,7 @@ pipeline { } stage('Build android deps') { steps { script { - /* build/fetch things required to build jsbundle and android */ + /* Build/fetch deps required to build android release. */ nix.build( attr: 'targets.mobile.android.release.buildInputs', sandbox: false, @@ -84,7 +83,7 @@ pipeline { } stage('Build nix shell deps') { steps { script { - /* build/fetch things required to instantiate shell.nix for TARGET=all */ + /* Build/fetch deps required to start default Nix shell. */ nix.build( attr: 'shells.default.buildInputs', sandbox: false,