This repository was archived by the owner on Jan 18, 2021. It is now read-only.
forked from NYPL-Simplified/Simplified-Android-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.sh
executable file
·110 lines (85 loc) · 3.96 KB
/
.travis.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/bin/sh -ex
if [ -z "${NYPL_NEXUS_USER}" ]
then
echo "error: NYPL_NEXUS_USER is not defined" 1>&2
exit 1
fi
if [ -z "${NYPL_NEXUS_PASSWORD}" ]
then
echo "error: NYPL_NEXUS_PASSWORD is not defined" 1>&2
exit 1
fi
if [ -z "${LFA_BUILDS_USER}" ]
then
echo "error: LFA_BUILDS_USER is not defined" 1>&2
exit 1
fi
if [ -z "${LFA_BUILDS_PASSWORD}" ]
then
echo "error: LFA_BUILDS_PASSWORD is not defined" 1>&2
exit 1
fi
if [ -z "${LFA_BUILDS_SSH_KEY}" ]
then
echo "LFA_BUILDS_SSH_KEY not set"
exit 1
fi
if [ -z "${LFA_KEYSTORE_PASSWORD}" ]
then
echo "LFA_KEYSTORE_PASSWORD not set"
exit 1
fi
#------------------------------------------------------------------------
# Configure SSH
mkdir -p "${HOME}/.ssh" || exit 1
echo "${LFA_BUILDS_SSH_KEY}" | base64 -d > "${HOME}/.ssh/id_ed25519" || exit 1
chmod 700 "${HOME}/.ssh" || exit 1
chmod 600 "${HOME}/.ssh/id_ed25519" || exit 1
(cat <<EOF
[builds.lfa.one]:1022 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH/vroEIxH46lW/xg+CmCDwO7FHN24oP+ad4T/OtB/D2
EOF
) >> "$HOME/.ssh/known_hosts" || exit 1
#------------------------------------------------------------------------
# Configure Nexus and keystore
scp -P 1022 [email protected]:lfa-keystore.jks .
(cat <<EOF
org.librarysimplified.nexus.username=${NYPL_NEXUS_USER}
org.librarysimplified.nexus.password=${NYPL_NEXUS_PASSWORD}
au.org.libraryforall.keyAlias=main
au.org.libraryforall.keyPassword=${LFA_KEYSTORE_PASSWORD}
au.org.libraryforall.storePassword=${LFA_KEYSTORE_PASSWORD}
org.gradle.daemon=true
org.gradle.configureondemand=true
org.gradle.jvmargs=-Xmx4g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError
EOF
) >> gradle.properties || exit 1
#------------------------------------------------------------------------
# Configure bundled credentials
scp -P 1022 [email protected]:online-app-credentials.json .
scp -P 1022 [email protected]:bugsnag.conf .
cp online-app-credentials.json simplified-app-lfa/src/main/assets/account_bundled_credentials.json
cp online-app-credentials.json simplified-app-lfa-offline/src/main/assets/account_bundled_credentials.json
cp online-app-credentials.json simplified-app-lfa-laos/src/main/assets/account_bundled_credentials.json
cp bugsnag.conf simplified-app-lfa/src/main/assets/bugsnag.conf
cp bugsnag.conf simplified-app-lfa-offline/src/main/assets/bugsnag.conf
cp bugsnag.conf simplified-app-lfa-laos/src/main/assets/bugsnag.conf
cp bugsnag.conf simplified-app-lfa-timor/src/main/assets/bugsnag.conf
#------------------------------------------------------------------------
# Configure offline bundles
rsync -a -L -i --delay-updates --partial --no-inc-recursive --no-times -e "ssh -p 1022" \
[email protected]:/feeds/png/current/ simplified-app-lfa-offline/src/main/assets/
rsync -a -L -i --delay-updates --partial --no-inc-recursive --no-times -e "ssh -p 1022" \
[email protected]:/feeds/png-feedsonly/current/ simplified-app-lfa/src/main/assets/
rsync -a -L -i --delay-updates --partial --no-inc-recursive --no-times -e "ssh -p 1022" \
[email protected]:/feeds/laos/current/ simplified-app-lfa-laos/src/main/assets/
rsync -a -L -i --delay-updates --partial --no-inc-recursive --no-times -e "ssh -p 1022" \
[email protected]:/feeds/timor/current/ simplified-app-lfa-timor/src/main/assets/
#------------------------------------------------------------------------
# Build!
./gradlew clean assembleRelease test
#------------------------------------------------------------------------
# Publish APKs
scp -P 1022 ./simplified-app-lfa-offline/build/outputs/apk/release/*.apk [email protected]:/sites/builds.lfa.one/apk/
scp -P 1022 ./simplified-app-lfa/build/outputs/apk/release/*.apk [email protected]:/sites/builds.lfa.one/apk/
scp -P 1022 ./simplified-app-lfa-laos/build/outputs/apk/release/*.apk [email protected]:/sites/builds.lfa.one/apk/
scp -P 1022 ./simplified-app-lfa-timor/build/outputs/apk/release/*.apk [email protected]:/sites/builds.lfa.one/apk/