Implement custom travis_wait in order to have command output still printed on the command line

This commit is contained in:
evilaliv3 2016-01-08 12:01:25 +01:00
parent dc6f91971f
commit 954540ff22
2 changed files with 17 additions and 2 deletions

View File

@ -57,4 +57,4 @@ matrix:
before_script:
- npm install -g grunt-cli
script:
- travis_wait $TRAVIS_BUILD_DIR/travis.sh
- $TRAVIS_BUILD_DIR/travis.sh

View File

@ -33,5 +33,20 @@ elif [[ $OPENPGPJSTEST =~ ^end2end-.* ]]; then
echo "Testing Configuration: ${testkey}"
eval $capability
grunt saucelabs
grunt saucelabs &
# https://github.com/travis-ci/travis-ci/issues/4190
minutes=0
limit=30
while kill -0 $! >/dev/null 2>&1; do
echo -n -e " \b" # never leave evidences!
if [ $minutes == $limit ]; then
break;
fi
minutes=$((minutes+1))
sleep 60
done
fi