aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-06-18 13:04:17 -0400
committerKevin O'Connor <kevin@koconnor.net>2018-06-18 13:19:12 -0400
commitd887a403ff45d9023cb11daabd31b852ca6c2bdb (patch)
treeb0fbc74c728becbf3e76f54979f882a1cd98137d /scripts
parent4fbecfa1fceb5af2bd4f43bc46595805693be8a7 (diff)
downloadkutter-d887a403ff45d9023cb11daabd31b852ca6c2bdb.tar.gz
kutter-d887a403ff45d9023cb11daabd31b852ca6c2bdb.tar.xz
kutter-d887a403ff45d9023cb11daabd31b852ca6c2bdb.zip
test: Try to cache gcc arm download during travis-ci builds
The gcc arm download sometimes fails - try to cache it within the travis-ci system to prevent that. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/travis-install.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/scripts/travis-install.sh b/scripts/travis-install.sh
index 759a8c01..ce1f7f9a 100755
--- a/scripts/travis-install.sh
+++ b/scripts/travis-install.sh
@@ -5,6 +5,8 @@
# Stop script early on any error; check variables; be verbose
set -eux
+DOWNLOAD_DIR=${PWD}/downloads
+
######################################################################
# Install embedded arm gcc
@@ -15,13 +17,19 @@ GCC_ARM_URL="https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4/g
GCC_ARM_SHA="96a029e2ae130a1210eaa69e309ea40463028eab18ba19c1086e4c2dafe69a6a gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2"
GCC_ARM_FILE="$(basename ${GCC_ARM_URL})"
-wget "$GCC_ARM_URL"
+mkdir -p ${DOWNLOAD_DIR}
+cd ${DOWNLOAD_DIR}
+
+if [ ! -f ${GCC_ARM_FILE} ]; then
+ wget "$GCC_ARM_URL"
+fi
FOUND_SHA=`sha256sum "$GCC_ARM_FILE"`
if [ "$FOUND_SHA" != "$GCC_ARM_SHA" ]; then
echo "ERROR: Mismatch on gcc arm sha256"
exit -1
fi
-tar xf "$GCC_ARM_FILE"
+cd ..
+tar xf "${DOWNLOAD_DIR}/${GCC_ARM_FILE}"
######################################################################