contrib/jenkins.sh: build ngff_Cardem dfu bootloader

It does fit with some compiler versions, while others overflow the bl region,
so just reduce the trace level a bit to make it fits all the time.

Change-Id: I168a847da8dfc585aaeef0030f95fc225a713147
This commit is contained in:
Eric Wild 2021-08-09 12:20:30 +02:00
parent 3092721729
commit 5beffa5d91
1 changed files with 7 additions and 2 deletions

View File

@ -32,7 +32,7 @@ BUILDS+="simtrace/dfu simtrace/trace simtrace/cardem "
BUILDS+="qmod/dfu qmod/cardem "
BUILDS+="owhw/dfu owhw/cardem "
BUILDS+="octsimtest/cardem "
BUILDS+="ngff_cardem/cardem "
BUILDS+="ngff_cardem/dfu ngff_cardem/cardem "
cd $TOPDIR/firmware
for build in $BUILDS; do
@ -40,7 +40,12 @@ for build in $BUILDS; do
app=`echo $build | cut -d "/" -f 2`
echo
echo "=============== $board / $app START =============="
make BOARD="$board" APP="$app"
# reduce the trace level so the bl fits
if [ $board = "ngff_cardem" ] && [ $app = "dfu" ]; then
make BOARD="$board" APP="$app" TRACE_LEVEL=2
else
make BOARD="$board" APP="$app"
fi
echo "=============== $board / $app RES:$? =============="
done