knx/.travis.yml

47 lines
1.6 KiB
YAML
Raw Normal View History

2019-06-01 23:37:52 +02:00
language: cpp
2019-06-02 00:42:38 +02:00
cache:
directories:
- ~/arduino_ide
- ~/.arduino15/packages/
2019-06-01 23:53:14 +02:00
matrix:
include:
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
env:
2019-06-02 00:54:09 +02:00
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
2019-06-02 00:29:12 +02:00
- MODE=LINUX
- os: linux
env:
- MODE=ARDUINO
2019-06-03 22:25:46 +02:00
- BOARD=arduino:samd:arduino_zero_native
2019-06-01 23:53:14 +02:00
before_install:
2019-06-02 00:54:09 +02:00
- if [ "$MODE" = "LINUX" ]; then eval "${MATRIX_EVAL}"; fi
2019-06-02 00:42:38 +02:00
- if [ "$MODE" = "ARDUINO" ]; then source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh); fi
2019-06-02 02:05:40 +02:00
- if [ "$MODE" = "ARDUINO" ]; then wget https://github.com/thelsing/FlashStorage/archive/master.zip; fi
2019-06-03 22:25:46 +02:00
- if [ "$MODE" = "ARDUINO" ]; then unzip master.zip -d $HOME/arduino_ide/libraries; fi
- if [ "$MODE" = "ARDUINO" ]; then wget https://ae-bst.resource.bosch.com/media/_tech/media/bsec/BSEC_1.4.7.3_Generic_Release_20190410.zip; fi
- buildExampleSketch() { arduino --verbose-build --verify --board $BOARD $PWD/examples/$1/$1.ino; }
2019-06-02 00:54:09 +02:00
install:
- if [ "$MODE" = "ARDUINO" ]; then arduino --install-library "WiFiManager"; fi
2019-06-01 23:37:52 +02:00
script:
2019-06-02 00:29:12 +02:00
- if [ "$MODE" = "LINUX" ]; then cd knx-linux; fi
2019-06-02 00:31:12 +02:00
- if [ "$MODE" = "LINUX" ]; then mkdir -p build; fi
- if [ "$MODE" = "LINUX" ]; then cd build; fi
- if [ "$MODE" = "LINUX" ]; then cmake ..; fi
- if [ "$MODE" = "LINUX" ]; then make; fi
2019-06-03 22:25:46 +02:00
- if [ "$MODE" = "ARDUINO" ]; then buildExampleSketch knx-demo; fi
2019-06-02 01:19:45 +02:00
notifications:
email:
on_success: change
on_failure: change