diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2020-03-25 17:08:21 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-05-15 15:06:02 +1000 |
commit | 1f1b78752f0c2d777f97e34b652de43371834147 (patch) | |
tree | a7df60ce20fce199e27ca2ffef1e0be5eb9bbfa3 | |
parent | e7f8c7d9a390414808542e4a3a7f2a609278b5fc (diff) |
travis: Build more boards as part of nrf job.
Specifically:
- pca10040: It was already the default.
- microbit: It uses nRF51, has a Cortex-M0, and has additional libraries.
- pca10056: It has USB CDC.
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index deb4a9254..5460bf601 100644 --- a/.travis.yml +++ b/.travis.yml @@ -296,7 +296,9 @@ jobs: - arm-none-eabi-gcc --version script: - make ${MAKEOPTS} -C ports/nrf submodules - - make ${MAKEOPTS} -C ports/nrf + - make ${MAKEOPTS} -C ports/nrf BOARD=pca10040 + - make ${MAKEOPTS} -C ports/nrf BOARD=microbit + - make ${MAKEOPTS} -C ports/nrf BOARD=pca10056 # bare-arm and minimal ports, with size-diff check - stage: test |