You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
255 B
Bash
18 lines
255 B
Bash
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
export NOCOVERAGE=1
|
||
|
export DISTROS="debian*4"
|
||
|
|
||
|
# Make Docker containers once.
|
||
|
/usr/bin/time -v ./.ci/ansible_tests.py "$@"
|
||
|
export KEEP=1
|
||
|
|
||
|
i=0
|
||
|
while :
|
||
|
do
|
||
|
i=$((i + 1))
|
||
|
/usr/bin/time -v ./.ci/ansible_tests.py "$@" || break
|
||
|
done
|
||
|
|
||
|
echo $i
|