nix: fix nix-cache builds using wrong status-go targets

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-05-16 15:02:28 +02:00
parent 559a79b3d5
commit 2fcf0964f8
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ pipeline {
}
stage('Build status-go') {
steps { script {
def platforms = ['android', 'desktop', 'ios']
def platforms = ['mobile.android', 'mobile.ios', 'desktop']
if (uname != "Darwin") {
platforms.removeAll { it == "ios" }
}
@ -65,7 +65,7 @@ pipeline {
steps { script {
/* build/fetch things required to build jsbundle and android */
nix.build(
attr: 'targets.mobile.android.buildInputs',
attr: 'targets.mobile.android.release.buildInputs',
sandbox: false,
pure: false,
link: false