travis: Add nrf port to Travis CI build.

pull/1/head
Damien George 2018-07-19 10:36:38 +10:00
parent 6ac4304284
commit b7004efe36
1 changed files with 12 additions and 0 deletions

View File

@ -113,6 +113,18 @@ jobs:
- make ${MAKEOPTS} -C mpy-cross
- make ${MAKEOPTS} -C ports/windows CROSS_COMPILE=i686-w64-mingw32-
# nrf port
- stage: test
env: NAME="nrf port build"
install:
# need newer gcc version to support variables in linker script
- sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
- sudo apt-get update -qq || true
- sudo apt-get install gcc-arm-embedded
- arm-none-eabi-gcc --version
script:
- make ${MAKEOPTS} -C ports/nrf
# bare-arm and minimal ports
- stage: test
env: NAME="bare-arm and minimal ports build"