Skip to content

Commit 77c4548

Browse files
committed
tools/autobuild: Build alif boards as part of auto-build.
Signed-off-by: Damien George <damien@micropython.org>
1 parent 74a4cce commit 77c4548

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

tools/autobuild/autobuild.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ fi
6969
FW_TAG="-$FW_DATE-$FW_SEMVER"
7070

7171
# build new firmware
72-
cd ports/cc3200
72+
cd ports/alif
73+
build_alif_boards ${FW_TAG} ${LOCAL_FIRMWARE}
74+
cd ../cc3200
7375
build_cc3200_boards ${FW_TAG} ${LOCAL_FIRMWARE}
7476
cd ../esp8266
7577
build_esp8266_boards ${FW_TAG} ${LOCAL_FIRMWARE}

tools/autobuild/build-boards.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ function build_boards {
8686
done
8787
}
8888

89+
function build_alif_boards {
90+
build_boards modalif.c $1 $2 zip
91+
}
92+
8993
function build_cc3200_boards {
9094
build_boards hal/cc3200_hal.c $1 $2 zip
9195
}

0 commit comments

Comments
 (0)