Add GCS deploy timeout in travis_ci

Is this feasible? I get:

this potentially indicates a stalled build or something wrong with the build itself.
Check the details on how to adjust your build configuration on:

In Travis there is no configuration tweak for deployment timeout, but you could add a background process that writes something to STDOUT before the deployment starts. This will prevent your deployment from getting killed when 10 minutes is up.

For the least visual infractions, one can write visual bells (\a):

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