From 64e77d369c5225e346c7082097b224c92bb9c86a Mon Sep 17 00:00:00 2001 From: Cruz Monrreal II Date: Tue, 26 Jun 2018 10:54:57 -0500 Subject: [PATCH] Moved the sourcing of the astyle archive to AWS from SourceForge. SF has been failing intermitantly, and appears to not explicitly allow the automatic downloading of archives. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1b3be03b00..57795e8676 100644 --- a/.travis.yml +++ b/.travis.yml @@ -109,8 +109,8 @@ matrix: - env: - NAME=astyle install: - - wget https://downloads.sourceforge.net/project/astyle/astyle/astyle%203.1/astyle_3.1_linux.tar.gz; - mkdir -p BUILD && tar xf astyle_3.1_linux.tar.gz -C BUILD; + - curl -L0 http://mbed-os.s3-eu-west-1.amazonaws.com/builds/deps/astyle_3.1_linux.tar.gz --output astyle.tar.gz; + mkdir -p BUILD && tar xf astyle.tar.gz -C BUILD; pushd BUILD/astyle/build/gcc; make; export PATH=$PWD/bin:$PATH;