osd-contiki/.travis.yml

43 lines
2.0 KiB
YAML
Raw Normal View History

language: c #NOTE: this will set CC=gcc which might cause trouble
before_script:
- "sudo apt-get -qq update"
## Install these mainline toolchains for all build types
- "sudo apt-get -qq install gcc-msp430 || true"
- "sudo apt-get -qq install gcc-avr avr-libc || true"
## Install toolchain for mc1233x in care-free way
- "[ $BUILD_TYPE = compile ] && curl -s \
https://sourcery.mentor.com/public/gnu_toolchain/arm-none-eabi/arm-2008q3-66-arm-none-eabi-i686-pc-linux-gnu.tar.bz2 \
| tar xjf - -C /tmp/ && sudo cp -f -r /tmp/arm-2008q3/* /usr/ && rm -rf /tmp/arm-2008q3 && arm-none-eabi-gcc --version || true"
2012-11-13 01:07:04 +01:00
## Compile cooja.jar only when it's going to be needed
- "[ $MAKE_TARGETS = cooja ] && java -version && ant -q -f tools/cooja/build.xml jar || true"
2012-11-13 01:07:04 +01:00
## IMPORTANT: The commands here have to end with `|| true`,
## because it would make the test fail if BUILD_TYPE test fails
script:
## The makefile called `.travis.mk` handles most of generic logic
- "make -f .travis.mk $MAKE_TARGETS"
after_script:
## Print a basic summary in unix style
- "echo 'Summary:'; cat results | sort | uniq -c"
## This will detect whether the build should pass or fail
- "test `grep -c 'fail' results` -eq 0"
env:
## This magically kick-off parallel jobs for each of the for the sets
## of environment variable defined below
- BUILD_TYPE='compile' MAKE_TARGETS='native minimal-net econotag sky micaz avr-raven'
- BUILD_TYPE='ipv6' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='collect-lossy' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='collect-sky' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='collect' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='helloworld' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='base' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='rime' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='netperf' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='sky-shell' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='elfloader' MAKE_TARGETS='cooja' TAIL=cat
- BUILD_TYPE='ipv6-apps' MAKE_TARGETS='cooja' TAIL=cat