Added NXP JN516x regression testing
This commit is contained in:
parent
4811bb8edb
commit
36f6ce7b82
17
.travis.yml
17
.travis.yml
|
@ -73,6 +73,22 @@ before_script:
|
||||||
cc65 --version ;
|
cc65 --version ;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
## Install NXP toolchain
|
||||||
|
- if [ ${BUILD_ARCH:-0} = jn516x ] ; then
|
||||||
|
$WGET http://simonduq.github.io/resources/ba-elf-gcc-4.7.4-part1.tar.bz2 &&
|
||||||
|
$WGET http://simonduq.github.io/resources/ba-elf-gcc-4.7.4-part2.tar.bz2 &&
|
||||||
|
$WGET http://simonduq.github.io/resources/jn516x-sdk-4163.tar.bz2 &&
|
||||||
|
mkdir /tmp/jn516x-sdk /tmp/ba-elf-gcc &&
|
||||||
|
tar xjf jn516x-sdk-*.tar.bz2 -C /tmp/jn516x-sdk &&
|
||||||
|
tar xjf ba-elf-gcc-*part1.tar.bz2 -C /tmp/ba-elf-gcc &&
|
||||||
|
tar xjf ba-elf-gcc-*part2.tar.bz2 -C /tmp/ba-elf-gcc &&
|
||||||
|
sudo cp -f -r /tmp/jn516x-sdk /usr/ &&
|
||||||
|
sudo cp -f -r /tmp/ba-elf-gcc /usr/ &&
|
||||||
|
export PATH=/usr/ba-elf-gcc/bin:$PATH &&
|
||||||
|
rm -rf /tmp/ba-elf-gcc* /tmp/jn516x-sdk* &&
|
||||||
|
ba-elf-gcc --version ;
|
||||||
|
fi
|
||||||
|
|
||||||
## Compile cooja.jar only when it's going to be needed
|
## Compile cooja.jar only when it's going to be needed
|
||||||
- if [ ${BUILD_CATEGORY:-sim} = sim ] ; then
|
- if [ ${BUILD_CATEGORY:-sim} = sim ] ; then
|
||||||
java -version &&
|
java -version &&
|
||||||
|
@ -120,5 +136,6 @@ env:
|
||||||
- BUILD_TYPE='compile-arm-apcs-ports' BUILD_CATEGORY='compile' BUILD_ARCH='arm-apcs'
|
- BUILD_TYPE='compile-arm-apcs-ports' BUILD_CATEGORY='compile' BUILD_ARCH='arm-apcs'
|
||||||
- BUILD_TYPE='compile-6502-ports' BUILD_CATEGORY='compile' BUILD_ARCH='6502'
|
- BUILD_TYPE='compile-6502-ports' BUILD_CATEGORY='compile' BUILD_ARCH='6502'
|
||||||
- BUILD_TYPE='compile-arm-ports' BUILD_CATEGORY='compile' BUILD_ARCH='arm-aapcs'
|
- BUILD_TYPE='compile-arm-ports' BUILD_CATEGORY='compile' BUILD_ARCH='arm-aapcs'
|
||||||
|
- BUILD_TYPE='compile-nxp-ports' BUILD_CATEGORY='compile' BUILD_ARCH='jn516x'
|
||||||
- BUILD_TYPE='slip-radio' MAKE_TARGETS='cooja'
|
- BUILD_TYPE='slip-radio' MAKE_TARGETS='cooja'
|
||||||
- BUILD_TYPE='llsec' MAKE_TARGETS='cooja'
|
- BUILD_TYPE='llsec' MAKE_TARGETS='cooja'
|
||||||
|
|
16
regression-tests/22-compile-nxp-ports/Makefile
Normal file
16
regression-tests/22-compile-nxp-ports/Makefile
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
EXAMPLESDIR=../../examples
|
||||||
|
TOOLSDIR=../../tools
|
||||||
|
|
||||||
|
# build jn516x examples, covering IPv6, RPL, CoAP, Rime, Nullrdc, Contikimac
|
||||||
|
EXAMPLES = \
|
||||||
|
jn516x/dr1175-sensors/jn516x \
|
||||||
|
jn516x/rime/jn516x \
|
||||||
|
jn516x/rpl/border-router/jn516x \
|
||||||
|
jn516x/rpl/node/jn516x \
|
||||||
|
jn516x/rpl/coap-dongle-node/jn516x \
|
||||||
|
jn516x/rpl/coap-dr1175-node/jn516x \
|
||||||
|
jn516x/rpl/coap-dr1199-node/jn516x
|
||||||
|
|
||||||
|
TOOLS=
|
||||||
|
|
||||||
|
include ../Makefile.compile-test
|
Loading…
Reference in a new issue