6839fff313
* atmel-samd: Remove ASF3. This will break builds. * atmel-samd: Add ASF4 for the SAMD21 and SAMD51. * Introduce the supervisor concept to facilitate porting. The supervisor is the code which runs individual MicroPython VMs. By splitting it out we make it more consistent and easier to find. This also adds very basic SAMD21 and SAMD51 support using the supervisor. Only the REPL currently works. This begins the work for #178.
53 lines
1.7 KiB
Bash
Executable File
53 lines
1.7 KiB
Bash
Executable File
rm -rf atmel-samd/build*
|
|
rm -rf esp8266/build*
|
|
|
|
ATMEL_BOARDS="arduino_zero circuitplayground_express feather_m0_basic feather_m0_adalogger feather_m0_express metro_m0_express metro_m4_express trinket_m0 gemma_m0"
|
|
ROSIE_SETUPS="rosie-ci"
|
|
|
|
for board in $ATMEL_BOARDS; do
|
|
make -C atmel-samd BOARD=$board
|
|
(( exit_status = exit_status || $? ))
|
|
done
|
|
if [ -z "$TRAVIS" ]; then
|
|
make -C esp8266 BOARD=feather_huzzah
|
|
(( exit_status = exit_status || $? ))
|
|
fi
|
|
|
|
version=`git describe --tags --exact-match`
|
|
if [ $? -ne 0 ]; then
|
|
version=`date +%Y%m%d`-`git rev-parse --short HEAD`
|
|
fi
|
|
|
|
|
|
if [ "$TRAVIS" == "true" ]; then
|
|
sha=$TRAVIS_COMMIT
|
|
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
|
version=`date +%Y%m%d`-`echo $TRAVIS_PULL_REQUEST_SHA | cut -c1-7`
|
|
sha=$TRAVIS_PULL_REQUEST_SHA
|
|
fi
|
|
fi
|
|
|
|
for board in $ATMEL_BOARDS; do
|
|
mkdir -p bin/$board/
|
|
cp atmel-samd/build-$board/firmware.bin bin/$board/adafruit-circuitpython-$board-$version.bin
|
|
(( exit_status = exit_status || $? ))
|
|
cp atmel-samd/build-$board/firmware.uf2 bin/$board/adafruit-circuitpython-$board-$version.uf2
|
|
(( exit_status = exit_status || $? ))
|
|
# Only upload to Rosie if its a pull request.
|
|
if [ "$TRAVIS" == "true" ]; then
|
|
for rosie in $ROSIE_SETUPS; do
|
|
echo "Uploading to https://$rosie.ngrok.io/upload/$sha"
|
|
curl -F "file=@bin/$board/adafruit-circuitpython-$board-$version.uf2" https://$rosie.ngrok.io/upload/$sha
|
|
done
|
|
fi
|
|
done
|
|
|
|
# Skip ESP8266 on Travis
|
|
if [ -z "$TRAVIS" ]; then
|
|
mkdir -p bin/esp8266/
|
|
cp esp8266/build/firmware-combined.bin bin/esp8266/adafruit-circuitpython-feather_huzzah-$version.bin
|
|
(( exit_status = exit_status || $? ))
|
|
fi
|
|
|
|
exit $exit_status
|