File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11rm -rf ports/atmel-samd/build*
22rm -rf ports/esp8266/build*
3+ rm -rf ports/nrf/build*
34
45ATMEL_BOARDS=" arduino_zero circuitplayground_express feather_m0_basic feather_m0_adalogger feather_m0_express metro_m0_express metro_m4_express trinket_m0 gemma_m0"
56ROSIE_SETUPS=" rosie-ci"
@@ -23,6 +24,10 @@ if [ -z "$TRAVIS" ]; then
2324 make $PARALLEL -C ports/esp8266 BOARD=feather_huzzah
2425 (( exit_status = exit_status || $? ))
2526fi
27+ if [ -z " $TRAVIS " ]; then
28+ make $PARALLEL -C ports/nrf BOARD=feather52
29+ (( exit_status = exit_status || $? ))
30+ fi
2631
2732version=` git describe --tags --exact-match`
2833if [ $? -ne 0 ]; then
@@ -60,4 +65,11 @@ if [ -z "$TRAVIS" ]; then
6065 (( exit_status = exit_status || $? ))
6166fi
6267
68+ # Skip nRF52 on Travis
69+ if [ -z " $TRAVIS " ]; then
70+ mkdir -p bin/nrf/
71+ cp ports/nrf/build-feather52/firmware.bin bin/nrf/adafruit-circuitpython-feather_nrf52-$version .bin
72+ (( exit_status = exit_status || $? ))
73+ fi
74+
6375exit $exit_status
You can’t perform that action at this time.
0 commit comments