diff options
author | bnewbold <bnewbold@robocracy.org> | 2014-08-28 17:23:18 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2014-08-28 17:23:18 -0400 |
commit | 4876692bb15a136aaf08b7b46911dbf0030dc8de (patch) | |
tree | bd8dca60193684f78179e91f83f807b1ec63b704 | |
parent | 201130fe7c11b16875ee97157adb8d1fb23894c3 (diff) | |
download | librambutan-4876692bb15a136aaf08b7b46911dbf0030dc8de.tar.gz librambutan-4876692bb15a136aaf08b7b46911dbf0030dc8de.zip |
builds: experimental travis.yml support
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..dc4880e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +before_install: + - sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded + - sudo apt-get update -o Dir::Etc::sourcelist="sources.list.d/terry_guo-gcc-arm-embedded-precise.list" -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0" +install: + - sudo apt-get install gcc-arm-none-eabi +before_script: + - cp examples/test-session.cpp main.cpp +script: + - make +env: + matrix: + - BOARD=maple_mini + - BOARD=maple_native + - BOARD=st_stm3220g_eval |