added retry function to tests script
This commit is contained in:
parent
bd90745528
commit
33404a7772
2 changed files with 24 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
make test-unit && make test-integration
|
make test-unit
|
||||||
|
ci_retry make test-integration
|
||||||
make -j${N_MAKE_JOBS} crossbinary-default-parallel
|
make -j${N_MAKE_JOBS} crossbinary-default-parallel
|
||||||
|
|
|
@ -17,3 +17,25 @@ fi
|
||||||
export CODENAME=raclette
|
export CODENAME=raclette
|
||||||
|
|
||||||
export N_MAKE_JOBS=2
|
export N_MAKE_JOBS=2
|
||||||
|
|
||||||
|
|
||||||
|
function ci_retry {
|
||||||
|
|
||||||
|
local NRETRY=3
|
||||||
|
local NSLEEP=5
|
||||||
|
local n=0
|
||||||
|
|
||||||
|
until [ $n -ge $NRETRY ]
|
||||||
|
do
|
||||||
|
"$@" && break
|
||||||
|
n=$[$n+1]
|
||||||
|
echo "$@ failed, attempt ${n}/${NRETRY}"
|
||||||
|
sleep $NSLEEP
|
||||||
|
done
|
||||||
|
|
||||||
|
[ $n -lt $NRETRY ]
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export -f ci_retry
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue