[#1271] Remove double build (test) (#1272)

* [#1271] Remove double build (test)

* Increase build action timeout

As still after the dual build is removed, the first build can take a longer time to finish.
This commit is contained in:
Honza Rychnovský 2023-09-27 08:55:18 +02:00 committed by GitHub
parent 69dc967ada
commit 1032f88035
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 5 deletions

View File

@ -336,17 +336,14 @@ jobs:
run: |
keytool -genkey -v -keystore $SIGNING_KEY_PATH -keypass android -storepass android -alias androiddebugkey -keyalg RSA -keysize 2048 -validity 100000 -dname "CN=, OU=, O=Test, L=, S=, C=" -noprompt
- name: Build
timeout-minutes: 35
timeout-minutes: 45
env:
ORG_GRADLE_PROJECT_ZCASH_RELEASE_KEYSTORE_PATH: ${{ format('{0}/release.jks', env.home) }}
ORG_GRADLE_PROJECT_ZCASH_RELEASE_KEYSTORE_PASSWORD: android
ORG_GRADLE_PROJECT_ZCASH_RELEASE_KEY_ALIAS: androiddebugkey
ORG_GRADLE_PROJECT_ZCASH_RELEASE_KEY_ALIAS_PASSWORD: android
run: |
# Due to issues with the Rust integration, building the release APK requires running the task twice to
# ensure the native libraries are bundled in the APK
./gradlew assembleRelease
./gradlew assembleRelease
./gradlew assembleRelease
- name: Collect Artifacts
timeout-minutes: 1
env: