Skip to content

Commit

Permalink
travis: fix aarch64 extraction
Browse files Browse the repository at this point in the history
[ Upstream commit 3551b26 ]

Signed-off-by: Nicolas Morey-Chaisemartin <[email protected]>
  • Loading branch information
nmorey committed Sep 18, 2019
1 parent 702d3bc commit 9cd0dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ service:
- docker

before_script:
- export LATEST_GCC_LINARO_URL=`wget -qO - https://releases.linaro.org/components/toolchain/binaries/latest-7/aarch64-linux-gnu/ | grep -o '<a href=['"'"'"].*gcc-linaro-.*x86_64_aarch64-linux-gnu.tar.xz['"'"'"]' | sed -e 's/^<a href=["'"'"']//' -e 's/["'"'"']$//'`
- export LATEST_GCC_LINARO_URL=`wget -qO - https://releases.linaro.org/components/toolchain/binaries/latest-7/aarch64-linux-gnu/ | grep -o '<a href=['"'"'"].*gcc-linaro-.*x86_64_aarch64-linux-gnu.tar.xz['"'"'"]' | sed -e 's/^<a href=["'"'"']//' -e 's/["'"'"']$//' | sort -n | tail -n 1`
- export LATEST_GCC_LINARO_TAR=`basename $LATEST_GCC_LINARO_URL`
- wget -q http://releases.linaro.org/$LATEST_GCC_LINARO_URL
- mkdir $HOME/aarch64 && tar xf $LATEST_GCC_LINARO_TAR -C $HOME/aarch64 --strip 1
Expand Down

0 comments on commit 9cd0dbb

Please sign in to comment.