tools/autobuild: Build alif boards as part of auto-build.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
74a4cce6d1
commit
77c454829f
2 changed files with 7 additions and 1 deletions
|
|
@ -69,7 +69,9 @@ fi
|
|||
FW_TAG="-$FW_DATE-$FW_SEMVER"
|
||||
|
||||
# build new firmware
|
||||
cd ports/cc3200
|
||||
cd ports/alif
|
||||
build_alif_boards ${FW_TAG} ${LOCAL_FIRMWARE}
|
||||
cd ../cc3200
|
||||
build_cc3200_boards ${FW_TAG} ${LOCAL_FIRMWARE}
|
||||
cd ../esp8266
|
||||
build_esp8266_boards ${FW_TAG} ${LOCAL_FIRMWARE}
|
||||
|
|
|
|||
|
|
@ -86,6 +86,10 @@ function build_boards {
|
|||
done
|
||||
}
|
||||
|
||||
function build_alif_boards {
|
||||
build_boards modalif.c $1 $2 zip
|
||||
}
|
||||
|
||||
function build_cc3200_boards {
|
||||
build_boards hal/cc3200_hal.c $1 $2 zip
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue