You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/build-olympus.bash
+15-5Lines changed: 15 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -11,12 +11,22 @@
11
11
# For starters lets only create keychains in travis, since locally everything is setup already. But ultimately, we should create a separate new keychain locally to so that we can test that better
12
12
echo"-- TRAVIS: $TRAVIS"
13
13
14
-
# Decrypting certs and profiles (not sure if profiles actually need to be encrypted, but this is how others did it so I'm following the same route just to be on the safe side)
15
-
echo"-- Setting up signing"
16
-
echo"-- Decrypting keys, etc"
17
-
echo"-- Setting up keychain"
18
14
19
-
echo"-- Installing provisioning profiles, so that XCode can find them"
15
+
if [ !-z"$TRAVIS" ]
16
+
then
17
+
# Decrypting certs and profiles (not sure if profiles actually need to be encrypted, but this is how others did it so I'm following the same route just to be on the safe side)
18
+
echo"-- Setting up signing"
19
+
echo"-- Decrypting keystore"
20
+
openssl aes-256-cbc -k "$FILE_ENCRYPTION_PASSWORD" -in scripts/keystore/${DEVELOPMENT_KEYSTORE}.enc -d -a -out scripts/certs/${DEVELOPMENT_KEYSTORE}
21
+
22
+
echo"-- Installing keystore"
23
+
ll ~/.android/
24
+
25
+
# Overwrite default keystore file only in travis, let's keep local builds separate for now
0 commit comments