mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 06:06:53 +00:00
2ce2354c84
1. there was an odd error when this environment variable wasn't set (`[: =: unary operator expected`) 2. this environment variable is not used anywhere else Removing it makes the logic look much simpler - do make `cooja.jar` if build type is any other then `compile`.
57 lines
2.4 KiB
YAML
57 lines
2.4 KiB
YAML
notifications:
|
|
email: false
|
|
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"
|
|
- "sudo apt-get -qq install srecord || true"
|
|
- "sudo apt-get -qq install libc6:i386 libgcc1:i386 gcc-4.6-base:i386 libstdc++5:i386 libstdc++6:i386 || true"
|
|
## Install toolchain for mc1233x in care-free way
|
|
- "[ $BUILD_TYPE = compile ] && curl -s \
|
|
https://raw.github.com/wiki/malvira/libmc1322x/files/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"
|
|
## 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"
|
|
|
|
## Compile cooja.jar only when it's going to be needed
|
|
- "[ ! $BUILD_TYPE = compile ] && java -version && ant -q -f tools/cooja/build.xml jar || true"
|
|
|
|
## 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 -C regression-tests/??-$BUILD_TYPE RUNALL=true summary"
|
|
|
|
after_script:
|
|
## Print cooja test logs
|
|
- "tail regression-tests/??-$BUILD_TYPE/*.testlog"
|
|
## Print a basic summary
|
|
- "echo 'Summary:'; cat regression-tests/??-$BUILD_TYPE/summary"
|
|
- "FAILS=`grep -c -i 'fail' regression-tests/??-$BUILD_TYPE/summary`"
|
|
## This will detect whether the build should pass or fail
|
|
- "test $FAILS -eq 0; exit $?"
|
|
|
|
|
|
env:
|
|
## This magically kick-off parallel jobs for each of the for the sets
|
|
## of environment variable defined below
|
|
- BUILD_TYPE='compile'
|
|
- BUILD_TYPE='collect'
|
|
- BUILD_TYPE='collect-lossy'
|
|
- BUILD_TYPE='rpl'
|
|
- BUILD_TYPE='rime'
|
|
- BUILD_TYPE='ipv6'
|
|
- BUILD_TYPE='hello-world'
|
|
- BUILD_TYPE='base'
|
|
# XXX: netperf disabled b/c it's flaky
|
|
# - BUILD_TYPE='netperf' MAKE_TARGETS='cooja'
|
|
- BUILD_TYPE='shell'
|
|
- BUILD_TYPE='elfloader'
|
|
- BUILD_TYPE='ipv4'
|
|
- BUILD_TYPE='ipv6-apps'
|