diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2017-04-18 21:29:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-18 21:29:04 +0200 |
commit | 4cf565a7e8f2ee3fa027334f2fc391910b9d8941 (patch) | |
tree | 32b81bd5e83b66b80d725eaf2e92df32cc6b69f5 /before_install.sh | |
parent | 97aaabeedd53ec16147696f8b44b16ee43d86a99 (diff) | |
parent | de1789b78383ae59e4428627beae848ae430b48b (diff) | |
download | ChibiOS-Contrib-4cf565a7e8f2ee3fa027334f2fc391910b9d8941.tar.gz ChibiOS-Contrib-4cf565a7e8f2ee3fa027334f2fc391910b9d8941.tar.bz2 ChibiOS-Contrib-4cf565a7e8f2ee3fa027334f2fc391910b9d8941.zip |
Merge pull request #1 from marcoveeneman/tiva_travis_ci
Initial Travis CI support.
Diffstat (limited to 'before_install.sh')
-rw-r--r-- | before_install.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/before_install.sh b/before_install.sh new file mode 100644 index 0000000..0769759 --- /dev/null +++ b/before_install.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +set -ex + +cd /tmp + +sudo apt-get install lib32z1 +wget https://launchpad.net/gcc-arm-embedded/4.9/4.9-2015-q3-update/+download/gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2 +tar xjf gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2 +export PATH=/tmp/gcc-arm-none-eabi-4_9-2015q3/bin:$PATH +arm-none-eabi-gcc --version + +cd - +cd .. + +mkdir ChibiOS-RT +cd ChibiOS-RT +git clone https://github.com/ChibiOS/ChibiOS.git . |