Travis: add a few more retries to OS X build script.
Their infra seems to be deteriorating with time, or something. Every other build fails lately.
This commit is contained in:
parent
21a4305ee1
commit
4537444db5
|
@ -8,7 +8,13 @@ cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
|
||||||
if ! make VERBOSE=1; then
|
if ! make VERBOSE=1; then
|
||||||
echo "Sigh, transient build failure. Retrying..."
|
echo "Sigh, transient build failure. Retrying..."
|
||||||
if ! make VERBOSE=1; then
|
if ! make VERBOSE=1; then
|
||||||
echo "Okay, this is probably an actual bug."
|
echo "Another transient build failure. Retrying..."
|
||||||
exit 1
|
if ! make VERBOSE=1; then
|
||||||
|
echo "I can't believe how deep the Travis brokenness goes. Retrying..."
|
||||||
|
if ! make VERBOSE=1; then
|
||||||
|
echo "Okay, this is probably an actual bug."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue
Block a user