nix: fix nix-cache builds using wrong status-go targets
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
559a79b3d5
commit
2fcf0964f8
|
@ -36,7 +36,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('Build status-go') {
|
stage('Build status-go') {
|
||||||
steps { script {
|
steps { script {
|
||||||
def platforms = ['android', 'desktop', 'ios']
|
def platforms = ['mobile.android', 'mobile.ios', 'desktop']
|
||||||
if (uname != "Darwin") {
|
if (uname != "Darwin") {
|
||||||
platforms.removeAll { it == "ios" }
|
platforms.removeAll { it == "ios" }
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,7 @@ pipeline {
|
||||||
steps { script {
|
steps { script {
|
||||||
/* build/fetch things required to build jsbundle and android */
|
/* build/fetch things required to build jsbundle and android */
|
||||||
nix.build(
|
nix.build(
|
||||||
attr: 'targets.mobile.android.buildInputs',
|
attr: 'targets.mobile.android.release.buildInputs',
|
||||||
sandbox: false,
|
sandbox: false,
|
||||||
pure: false,
|
pure: false,
|
||||||
link: false
|
link: false
|
||||||
|
|
Loading…
Reference in New Issue