avoid building jsbundle twice, drop jsbundle stage

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 <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-03-17 16:17:24 +01:00
parent 8aff7f487d
commit 4a7c03b1cc
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 0 additions and 7 deletions

View File

@ -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() }