mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-18 14:28:33 +03:00
The contrib/jenkins.sh script will build all supported apps for all supported builds. It will be used by jenkins/gerrit build testing.
20 lines
451 B
Bash
Executable File
20 lines
451 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
BUILDS=""
|
|
BUILDS+="simtrace/dfu simtrace/cardem " # simtrace/trace simtrace/triple_play
|
|
BUILDS+="qmod/dfu qmod/cardem "
|
|
BUILDS+="owhw/dfu owhw/cardem "
|
|
|
|
cd firmware
|
|
|
|
for build in $BUILDS; do
|
|
board=`echo $build | cut -d "/" -f 1`
|
|
app=`echo $build | cut -d "/" -f 2`
|
|
echo
|
|
echo "=============== $board / $app START =============="
|
|
make BOARD="$board" APP="$app"
|
|
echo "=============== $board / $app RES:$? =============="
|
|
done
|