mirror of
https://github.com/eclipse/paho.mqtt-sn.embedded-c.git
synced 2025-12-13 15:36:51 +01:00
Add: "make test" to .travis.yaml Add: compile GatewayTester to .travis.yaml Signed-off-by: tomoaki <tomoaki@tomy-tech.com>
26 lines
364 B
YAML
26 lines
364 B
YAML
language: cpp
|
|
compiler: g++
|
|
|
|
install:
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
|
|
script:
|
|
- cd MQTTSNGateway
|
|
- make CXX="g++-4.8" SENSORNET="xbee"
|
|
- make CXX="g++-4.8" SENSORNET="udp"
|
|
- make test
|
|
|
|
- cd GatewayTester
|
|
- make CXX="g++-4.8"
|
|
|
|
|
|
notifications:
|
|
emails:
|
|
- tomoaki@tomy-tech.com
|
|
|