From 4a7c03b1cc7a76559620f73abf8076b88b66b76a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 17 Mar 2020 16:17:24 +0100 Subject: [PATCH] avoid building jsbundle twice, drop jsbundle stage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Because we run nix/scripts/clean.sh after building JSBundle it is removed from Nix store and can't be reused in the Bundle stage. Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.android | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ci/Jenkinsfile.android b/ci/Jenkinsfile.android index 39ff57ba57..9a0bd4e2b3 100644 --- a/ci/Jenkinsfile.android +++ b/ci/Jenkinsfile.android @@ -73,13 +73,6 @@ pipeline { } } } stage('Build') { stages { - stage('JSBundle') { - steps { - script { - nix.shell('make jsbundle-android', pure: false) - } - } - } stage('Bundle') { steps { script { apks = android.bundle() }