Skip to content

Commit

Permalink
ci: fix android-e2e nightly builds (#18261)
Browse files Browse the repository at this point in the history
  • Loading branch information
yakimant authored Dec 21, 2023
1 parent e59e34d commit 2d22ed8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nix/mobile/android/release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ let


envFileName =
if androidAbiInclude == "x86" then ".env.e2e"
else if (elem buildType ["release" "nightly"]) then ".env.${buildType}"
else if (elem buildType ["pr" "manual"]) then ".env.jenkins"
if (elem androidAbiInclude ["x86" "x86_64" "x86;x86_64"]) then ".env.e2e"
else if (elem buildType ["release" "nightly"]) then ".env.${buildType}"
else if (elem buildType ["pr" "manual"]) then ".env.jenkins"
else ".env";

# There are only two types of Gradle build targets: pr and release
Expand Down

0 comments on commit 2d22ed8

Please sign in to comment.