contrib/jenkins.sh: set USE_CLANG=1

As the bootloader goes beyond partition size in modern gcc, use clang
instead.

Depends: docker-playground Ib82a53fa7edc62d21e772efbb9b2c049d1b50c4d
Related: OS#5260
Change-Id: I2aa2e20e75e334560dbe1f6db9fd1491873ff91f
This commit is contained in:
Oliver Smith
2022-10-13 11:41:23 +02:00
parent a5d537973d
commit 139d517bc1

View File

@@ -40,7 +40,7 @@ for build in $BUILDS; do
app=`echo $build | cut -d "/" -f 2`
echo
echo "=============== $board / $app START =============="
make BOARD="$board" APP="$app"
PATH="/opt/llvm-arm/bin:$PATH" make USE_CLANG=1 BOARD="$board" APP="$app"
echo "=============== $board / $app RES:$? =============="
done