BUILDBOT: Workaround for Android Build Failure

The debug signing key is too long for a SHA-1 signature so this fails.
This is a workaround by reducing the key length. This should be fixed
long term to use a more secure algorithm for signing with a long key
length.
This commit is contained in:
D G Turner
2019-03-01 18:27:03 +00:00
parent 0c75382d2c
commit 44ccbd882e
+2 -2
View File
@@ -5,6 +5,6 @@ mv -v debug.keystore debug.keystore-`date +%Y-%m-%d`
keytool -genkey -v -keystore ./debug.keystore \
-storepass android -alias androiddebugkey -keypass android \
-dname "CN=Android Debug,O=Android,C=US" \
-validity 365
-validity 365 \
-keysize 1024
chown buildbot:nogroup debug.keystore