mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 19:16:59 +00:00
nix: fix conditional that selects .env.e2e for ABI=x86 builds
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
618b1f81e2
commit
9ce786c9fb
@ -32,9 +32,9 @@ let
|
|||||||
name = "status-react-build-${baseName}";
|
name = "status-react-build-${baseName}";
|
||||||
|
|
||||||
envFileName =
|
envFileName =
|
||||||
if (elem buildType ["release" "nightly"]) then ".env.${buildType}"
|
if androidAbiInclude == "x86" then ".env.e2e"
|
||||||
else if androidAbiInclude == "x86" then ".env.e2e"
|
else if (elem buildType ["release" "nightly"]) then ".env.${buildType}"
|
||||||
else if (elem buildType ["pr" "manual"]) then ".env.jenkins"
|
else if (elem buildType ["pr" "manual"]) then ".env.jenkins"
|
||||||
else ".env";
|
else ".env";
|
||||||
|
|
||||||
# There are only two types of Gradle build targets: pr and release
|
# There are only two types of Gradle build targets: pr and release
|
||||||
|
Loading…
x
Reference in New Issue
Block a user