mirror of https://github.com/ArduPilot/ardupilot
CI: add navigator64 build
This commit is contained in:
parent
ea4d3fe87d
commit
cede211a7c
|
@ -160,6 +160,10 @@ jobs:
|
||||||
toolchain: armhf-musl
|
toolchain: armhf-musl
|
||||||
- config: linux
|
- config: linux
|
||||||
toolchain: base # GCC
|
toolchain: base # GCC
|
||||||
|
- config: navigator64
|
||||||
|
toolchain: aarch64
|
||||||
|
- config: linux
|
||||||
|
toolchain: base # GCC
|
||||||
exclude:
|
exclude:
|
||||||
- config: navigator
|
- config: navigator
|
||||||
toolchain: armhf
|
toolchain: armhf
|
||||||
|
|
|
@ -62,6 +62,7 @@ class BoardList(object):
|
||||||
self.boards = [
|
self.boards = [
|
||||||
Board("erlebrain2"),
|
Board("erlebrain2"),
|
||||||
Board("navigator"),
|
Board("navigator"),
|
||||||
|
Board("navigator64"),
|
||||||
Board("navio"),
|
Board("navio"),
|
||||||
Board("navio2"),
|
Board("navio2"),
|
||||||
Board("edge"),
|
Board("edge"),
|
||||||
|
|
|
@ -395,6 +395,14 @@ for t in $CI_BUILD_TARGET; do
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$t" == "navigator64" ]; then
|
||||||
|
echo "Building navigator64"
|
||||||
|
$waf configure --board navigator64 --toolchain=aarch64-linux-gnu
|
||||||
|
$waf sub
|
||||||
|
./Tools/scripts/firmware_version_decoder.py -f build/navigator64/bin/ardusub --expected-hash $GIT_VERSION
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$t" == "replay" ]; then
|
if [ "$t" == "replay" ]; then
|
||||||
echo "Building replay"
|
echo "Building replay"
|
||||||
$waf configure --board sitl --debug --disable-scripting
|
$waf configure --board sitl --debug --disable-scripting
|
||||||
|
|
Loading…
Reference in New Issue