From de1789b78383ae59e4428627beae848ae430b48b Mon Sep 17 00:00:00 2001 From: marcoveeneman Date: Thu, 6 Apr 2017 22:58:29 +0200 Subject: Initial Travis CI support. All the Tiva demos and testhal applications are built except the LWIP demo. --- before_install.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 before_install.sh (limited to 'before_install.sh') 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 . -- cgit v1.2.3