From 9e553c3d72b0516aeb64d3a5f17e17374b5ec085 Mon Sep 17 00:00:00 2001 From: George Oikonomou Date: Tue, 6 Aug 2013 18:28:09 +0100 Subject: [PATCH] Update travis to use a newer SDCC Due to SDCC bug #1986, we were previously stuck with SDCC revision #7100. The bug was fixed with rev #8719. Thus, we can now use newer versions More info: http://sourceforge.net/p/sdcc/bugs/1986/ --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 35d7016b4..5ec7d75ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,8 @@ before_script: | tar xjf - -C /tmp/ && sudo cp -f -r /tmp/arm-2008q3/* /usr/ && rm -rf /tmp/arm-2008q3 && arm-none-eabi-gcc --version || true" ## Install SDCC from a purpose-built bundle - "[ $BUILD_TYPE = compile ] && curl -s \ - https://raw.github.com/wiki/g-oikonomou/contiki-sensinode/files/sdcc-r7100.tar.gz \ - | tar xzf - -C /tmp/ && sudo cp -f -r /tmp/sdcc-r7100/* /usr/local/ && rm -rf /tmp/sdcc-r7100 && sdcc --version || true" + https://raw.github.com/wiki/g-oikonomou/contiki-sensinode/files/sdcc.tar.gz \ + | tar xzf - -C /tmp/ && sudo cp -f -r /tmp/sdcc/* /usr/local/ && rm -rf /tmp/sdcc && sdcc --version || true" ## Compile cooja.jar only when it's going to be needed - "[ ! $BUILD_TYPE = compile ] && java -version && ant -q -f tools/cooja/build.xml jar || true"