mbedmicro/mbed#87 Added some travis support, I hope. Only currently supports GCC_ARM and untested so far...

pull/96/head
Matthew Else 2013-10-28 09:23:39 +00:00
parent 5aad98af4b
commit ca5a5a4f5f
2 changed files with 12 additions and 0 deletions

6
.travis.yml Normal file
View File

@ -0,0 +1,6 @@
---
install: travis/install_dependencies.sh
python:
- "2.7"
script: "python workspace_tools/build.py -r -e -U -u -d -b -t GCC_ARM"

View File

@ -0,0 +1,6 @@
echo "Installing compilation dependencies."
# Install GCC-ARM Compiler.
sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
sudo apt-get update
sudo apt-get install gcc-arm-none-eabi