diff options
| author | Lena <lena@omega> | 2026-08-01 00:00:00 +0000 |
|---|---|---|
| committer | Lena <lena@omega> | 2026-08-01 00:00:00 +0000 |
| commit | 7166ac47c58a4a8acccebb07ae9395773ad9958e (patch) | |
| tree | a69e75c9e45f9d0d07cd631411694b791647356b /test-rig/build-apk.sh | |
| parent | 852a8a00273c9128efeed0217a8e5d3fcd8bf780 (diff) | |
| download | scrcpy-android-7166ac47c58a4a8acccebb07ae9395773ad9958e.tar.gz | |
test-rig: exercise release paths
Diffstat (limited to 'test-rig/build-apk.sh')
| -rwxr-xr-x | test-rig/build-apk.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-rig/build-apk.sh b/test-rig/build-apk.sh index 18b3969..f54fad5 100755 --- a/test-rig/build-apk.sh +++ b/test-rig/build-apk.sh @@ -4,7 +4,7 @@ # signingConfigs wiring still produces a valid signed apk. # # Output: /work/app/build/outputs/apk/release/app-release.apk -# (and the keystore in /work/.tools/release-smoke.jks) +# (and the keystore in /work/.tools/release-smoke.p12) set -eu @@ -19,7 +19,7 @@ if [ ! -f "$KS" ]; then keytool -genkey -noprompt \ -keystore "$KS" -storetype PKCS12 \ -storepass "$KS_PASS" -keypass "$KS_PASS" \ - -alias "$KEY_ALIAS" -keyalg RSA -keysize 2048 -validity 365 \ + -alias "$KEY_ALIAS" -keyalg RSA -keysize 2048 -validity 36500 \ -dname "CN=scrcpy-android smoke, OU=test, O=local, C=US" \ >/dev/null fi |