Fix Travis GCC compiler path.

Sorry for all the commits/pushes...
This commit is contained in:
Jared Boone 2016-02-04 09:30:25 -08:00
parent b2f2b970d2
commit d98740045f

View File

@ -10,16 +10,17 @@ before_install:
# - sudo apt-get install -y gcc-arm-embedded
before_script:
- export PATH="gcc-arm-none-eabi-5_2-2015q4/bin:$PATH"
- export CC="arm-none-eabi-gcc"
- export CXX="arm-none-eabi-g++"
install:
- wget https://launchpad.net/gcc-arm-embedded/5.0/5-2015-q4-major/+download/gcc-arm-none-eabi-5_2-2015q4-20151219-linux.tar.bz2
- tar -xf gcc-arm-none-eabi-5_2-2015q4-20151219-linux.tar.bz2
- export PATH="$TRAVIS_BUILD_DIR/gcc-arm-none-eabi-5_2-2015q4/bin:$PATH"
script:
# TODO: Introduce top-level Makefile, this is lame.
- ls -l
- pushd firmware/
- make release
- popd