Travis: build with Arduino 1.5.8 and 1.6.7

This commit is contained in:
Benoit Blanchon
2015-12-22 22:01:30 +01:00
parent bd0ea42277
commit b54f1ffc1d
5 changed files with 45 additions and 22 deletions

13
scripts/travis/gcc.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh -eux
export CC=gcc
export CXX=g++
curl https://cmake.org/files/v3.4/cmake-3.4.0-Linux-x86_64.tar.gz | tar xz -C /tmp --strip 1
/tmp/bin/cmake -DCOVERAGE=true .
make
make test
pip install --user cpp-coveralls
coveralls --exclude third-party --gcov-options '\-lp'; fi