use another way to implement travis_wait (#401)

This commit is contained in:
Xiaolu Dai 2019-07-27 11:13:32 +08:00 коммит произвёл GitHub
Родитель aab78b64d4
Коммит 96514d8fe3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,7 @@ jobs:
- sudo apt-get install azure-cli - sudo apt-get install azure-cli
# - az --help # - az --help
# - chmod +x install.sh && ./install.sh # - chmod +x install.sh && ./install.sh
- travis_wait 30 set -o pipefail && mvn -P travis-ci-test clean cobertura:cobertura-integration-test | grep -v "DEBUG" - chmod +x ./src/libs/travis-wait-mvn-build.sh && ./src/libs/travis-wait-mvn-build.sh
- bash <(curl -s https://codecov.io/bash) - bash <(curl -s https://codecov.io/bash)
- stage: performance-test - stage: performance-test
script: script:

Просмотреть файл

@ -0,0 +1,9 @@
function write_visual_bells() {
while true; do
echo -en "\a"
sleep 10
done
}
write_visual_bells&
set -o pipefail && mvn -P travis-ci-test clean cobertura:cobertura-integration-test | grep -v "DEBUG"