forked from bblanchon/ArduinoJson
Travis: build with Arduino 1.5.8 and 1.6.7
This commit is contained in:
29
.travis.yml
29
.travis.yml
@ -1,23 +1,8 @@
|
|||||||
sudo: false
|
sudo: false
|
||||||
language: c++
|
language: cpp
|
||||||
compiler:
|
env:
|
||||||
- gcc
|
- COMPILER=gcc
|
||||||
- clang
|
- COMPILER=clang
|
||||||
before_install:
|
- COMPILER=arduino VERSION=1.5.8 BOARD=arduino:avr:uno
|
||||||
- pip install --user cpp-coveralls
|
- COMPILER=arduino VERSION=1.6.7 BOARD=arduino:avr:uno
|
||||||
- mkdir -p /tmp/cmake
|
script: scripts/travis/$COMPILER.sh
|
||||||
- curl https://cmake.org/files/v3.4/cmake-3.4.0-Linux-x86_64.tar.gz | tar xz -C /tmp/cmake --strip 1
|
|
||||||
- export PATH=/tmp/cmake/bin:$PATH
|
|
||||||
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
|
|
||||||
- sleep 3
|
|
||||||
- export DISPLAY=:1.0
|
|
||||||
- mkdir -p /tmp/arduino
|
|
||||||
- curl http://downloads.arduino.cc/arduino-1.6.5-linux64.tar.xz | tar xJ -C /tmp/arduino --strip 1
|
|
||||||
- export PATH=$PATH:/tmp/arduino/
|
|
||||||
- ln -s $PWD /tmp/arduino/libraries/ArduinoJson
|
|
||||||
script:
|
|
||||||
- cmake -DCOVERAGE=true . && make && make test
|
|
||||||
- arduino --verify --board arduino:avr:uno $PWD/examples/JsonParserExample/JsonParserExample.ino
|
|
||||||
- arduino --verify --board arduino:avr:uno $PWD/examples/JsonGeneratorExample/JsonGeneratorExample.ino
|
|
||||||
after_success:
|
|
||||||
- if [ "$CC" = "gcc" ]; then coveralls --exclude third-party --gcov-options '\-lp'; fi
|
|
||||||
|
0
scripts/build-old-arduino-package.sh
Normal file → Executable file
0
scripts/build-old-arduino-package.sh
Normal file → Executable file
15
scripts/travis/arduino.sh
Executable file
15
scripts/travis/arduino.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh -eux
|
||||||
|
|
||||||
|
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16
|
||||||
|
sleep 3
|
||||||
|
export DISPLAY=:1.0
|
||||||
|
|
||||||
|
mkdir -p /tmp/arduino
|
||||||
|
curl -sS http://downloads.arduino.cc/arduino-$VERSION-linux64.tar.xz | tar xJ -C /tmp/arduino --strip 1 ||
|
||||||
|
curl -sS http://downloads.arduino.cc/arduino-$VERSION-linux64.tgz | tar xz -C /tmp/arduino --strip 1
|
||||||
|
export PATH=$PATH:/tmp/arduino/
|
||||||
|
|
||||||
|
ln -s $PWD /tmp/arduino/libraries/ArduinoJson
|
||||||
|
|
||||||
|
arduino --verify --board $BOARD $PWD/examples/JsonParserExample/JsonParserExample.ino
|
||||||
|
arduino --verify --board $BOARD $PWD/examples/JsonGeneratorExample/JsonGeneratorExample.ino
|
10
scripts/travis/clang.sh
Executable file
10
scripts/travis/clang.sh
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/sh -eux
|
||||||
|
|
||||||
|
export CC=clang
|
||||||
|
export CXX=clang++
|
||||||
|
|
||||||
|
curl -sS https://cmake.org/files/v3.4/cmake-3.4.0-Linux-x86_64.tar.gz | tar xz -C /tmp --strip 1
|
||||||
|
|
||||||
|
/tmp/bin/cmake .
|
||||||
|
make
|
||||||
|
make test
|
13
scripts/travis/gcc.sh
Executable file
13
scripts/travis/gcc.sh
Executable 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
|
Reference in New Issue
Block a user