From 910f7b1ac8936de7af08d74deb44ad1ea7c6ff13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Th=C3=A9baudeau?= Date: Sun, 7 Feb 2016 18:11:12 +0100 Subject: [PATCH] travis: Force AAPCS toolchain version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Make Travis CI use the GNU ARM Embedded toolchain version specified by the READMEs, instead of automatically using the latest version provided by the PPA. In this way, the READMEs will still be correct after a PPA upgrade, and the version used by Contiki is under control. Signed-off-by: Benoît Thébaudeau --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1814ee6fa..3a035fd2e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,7 +46,7 @@ before_script: - if [ ${BUILD_ARCH:-0} = arm-aapcs ] ; then sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa && sudo apt-get -qq update && - sudo apt-get -qq install gcc-arm-embedded srecord && + sudo apt-get -qq install gcc-arm-embedded=5-2015q4-1~precise1 srecord && arm-none-eabi-gcc --version ; fi