2017-01-13 9 views
0

travis-ciでdeploy gcsオプションを使用すると、ここにドキュメントhttps://docs.travis-ci.com/user/deployment/gcs/が表示されます。しかし私の配備は10分以上かかる。travis_ciでGCSデプロイメントタイムアウトを設定する方法

No output has been received in the last 10m0s, 
this potentially indicates a stalled build or something wrong with the build itself. 
Check the details on how to adjust your build configuration on: 
https://docs.travis-ci.com/user/common-build-problems/#Build-times-out-because-no-output-was-received 

ただし、タイムアウトを変更するオプションはありませんか?どのように可能ですか?

答えて

1

https://github.com/travis-ci/dpl/issues/568#issuecomment-272465349


そこから展開タイムアウトのための設定の微調整はありませんが、あなたは、展開を開始する前にSTDOUTに何かを書き込み、バックグラウンド・プロセスを追加することができます。これにより、10分後に展開が中断されるのを防ぎます。少なくとも視覚違反について

、一方は視覚鐘(\a)書き込むことができる。そのため

yaml before_deploy: | function keep_alive() { while true; do echo -en "\a" sleep 5 done } keep_alive &

+0

おかげ –

関連する問題