2013-01-10 07:16:20 +00:00
|
|
|
notifications:
|
|
|
|
email: false
|
2012-11-12 22:26:17 +00:00
|
|
|
language: c #NOTE: this will set CC=gcc which might cause trouble
|
|
|
|
before_script:
|
2012-11-13 09:53:54 +00:00
|
|
|
- "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"
|
2012-12-16 19:26:29 +00:00
|
|
|
- "sudo apt-get -qq install srecord || true"
|
2013-03-16 12:40:10 +00:00
|
|
|
- "sudo apt-get -qq install libc6:i386 libgcc1:i386 gcc-4.6-base:i386 libstdc++5:i386 libstdc++6:i386 || true"
|
2012-11-12 22:26:38 +00:00
|
|
|
## Install toolchain for mc1233x in care-free way
|
2012-11-21 22:55:09 +00:00
|
|
|
- "[ $BUILD_TYPE = compile ] && curl -s \
|
2013-05-18 01:07:18 +00:00
|
|
|
https://raw.github.com/wiki/malvira/libmc1322x/files/arm-2008q3-66-arm-none-eabi-i686-pc-linux-gnu.tar.bz2 \
|
2012-11-12 22:26:38 +00:00
|
|
|
| tar xjf - -C /tmp/ && sudo cp -f -r /tmp/arm-2008q3/* /usr/ && rm -rf /tmp/arm-2008q3 && arm-none-eabi-gcc --version || true"
|
2012-12-16 19:26:29 +00:00
|
|
|
## Install SDCC from a purpose-built bundle
|
|
|
|
- "[ $BUILD_TYPE = compile ] && curl -s \
|
|
|
|
https://raw.github.com/wiki/g-oikonomou/contiki-sensinode/files/sdcc-r7100.tar.gz \
|
|
|
|
| tar xzf - -C /tmp/ && sudo cp -f -r /tmp/sdcc-r7100/* /usr/local/ && rm -rf /tmp/sdcc-r7100 && sdcc --version || true"
|
|
|
|
|
2012-11-13 00:07:04 +00:00
|
|
|
## Compile cooja.jar only when it's going to be needed
|
2013-03-24 23:28:24 +00:00
|
|
|
- "[ ! $BUILD_TYPE = compile ] && java -version && ant -q -f tools/cooja/build.xml jar || true"
|
2012-11-13 00:07:04 +00:00
|
|
|
|
|
|
|
## IMPORTANT: The commands here have to end with `|| true`,
|
|
|
|
## because it would make the test fail if BUILD_TYPE test fails
|
2012-11-12 22:26:17 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
## The makefile called `.travis.mk` handles most of generic logic
|
2012-12-08 21:59:48 +00:00
|
|
|
- "make -C regression-tests/??-$BUILD_TYPE RUNALL=true summary"
|
2012-11-12 22:26:17 +00:00
|
|
|
|
|
|
|
after_script:
|
2013-05-18 01:07:12 +00:00
|
|
|
## Print cooja test logs
|
|
|
|
- "tail regression-tests/??-$BUILD_TYPE/*.testlog"
|
2012-12-17 11:34:58 +00:00
|
|
|
## Print a basic summary
|
2012-12-08 21:59:48 +00:00
|
|
|
- "echo 'Summary:'; cat regression-tests/??-$BUILD_TYPE/summary"
|
2012-12-17 11:34:58 +00:00
|
|
|
- "FAILS=`grep -c -i 'fail' regression-tests/??-$BUILD_TYPE/summary`"
|
2012-11-12 22:26:17 +00:00
|
|
|
## This will detect whether the build should pass or fail
|
2012-12-17 11:34:58 +00:00
|
|
|
- "test $FAILS -eq 0; exit $?"
|
2012-11-12 22:26:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
env:
|
|
|
|
## This magically kick-off parallel jobs for each of the for the sets
|
|
|
|
## of environment variable defined below
|
2012-12-08 21:59:48 +00:00
|
|
|
- BUILD_TYPE='compile'
|
2013-03-24 23:28:24 +00:00
|
|
|
- BUILD_TYPE='collect'
|
|
|
|
- BUILD_TYPE='collect-lossy'
|
|
|
|
- BUILD_TYPE='rpl'
|
|
|
|
- BUILD_TYPE='rime'
|
|
|
|
- BUILD_TYPE='ipv6'
|
|
|
|
- BUILD_TYPE='hello-world'
|
|
|
|
- BUILD_TYPE='base'
|
2013-05-19 13:59:02 +00:00
|
|
|
# XXX: netperf disabled b/c it's flaky
|
|
|
|
# - BUILD_TYPE='netperf' MAKE_TARGETS='cooja'
|
2013-03-24 23:28:24 +00:00
|
|
|
- BUILD_TYPE='shell'
|
|
|
|
- BUILD_TYPE='elfloader'
|
|
|
|
- BUILD_TYPE='ipv4'
|
|
|
|
- BUILD_TYPE='ipv6-apps'
|