2017-01-13 1 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

감사 –

관련 문제