ci: fix jsbundle target name for nix-cache build
Forgot to update this in: https://github.com/status-im/status-mobile/pull/15924 Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
f30d5b59ca
commit
e8b956d4f4
|
@ -61,10 +61,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('Build android jsbundle') {
|
stage('Build android jsbundle') {
|
||||||
steps { script {
|
steps { script {
|
||||||
/* build/fetch things required to produce a js-bundle for android
|
/* Build/fetch deps required for jsbundle build. */
|
||||||
* (e.g. maven and node repos) */
|
|
||||||
nix.build(
|
nix.build(
|
||||||
attr: 'targets.mobile.android.jsbundle',
|
attr: 'targets.mobile.jsbundle',
|
||||||
sandbox: false,
|
sandbox: false,
|
||||||
pure: false,
|
pure: false,
|
||||||
link: false
|
link: false
|
||||||
|
@ -73,7 +72,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('Build android deps') {
|
stage('Build android deps') {
|
||||||
steps { script {
|
steps { script {
|
||||||
/* build/fetch things required to build jsbundle and android */
|
/* Build/fetch deps required to build android release. */
|
||||||
nix.build(
|
nix.build(
|
||||||
attr: 'targets.mobile.android.release.buildInputs',
|
attr: 'targets.mobile.android.release.buildInputs',
|
||||||
sandbox: false,
|
sandbox: false,
|
||||||
|
@ -84,7 +83,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage('Build nix shell deps') {
|
stage('Build nix shell deps') {
|
||||||
steps { script {
|
steps { script {
|
||||||
/* build/fetch things required to instantiate shell.nix for TARGET=all */
|
/* Build/fetch deps required to start default Nix shell. */
|
||||||
nix.build(
|
nix.build(
|
||||||
attr: 'shells.default.buildInputs',
|
attr: 'shells.default.buildInputs',
|
||||||
sandbox: false,
|
sandbox: false,
|
Loading…
Reference in New Issue