diff options
| author | MarcoFalke <[email protected]> | 2018-06-13 09:26:40 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-06-13 09:26:45 -0400 |
| commit | 4b1edd318514074469769bb144a516797d78eccd (patch) | |
| tree | 4f4c33d965bb19ae9e89c3a2aa9379a290896fe9 | |
| parent | Merge #13393: Enable double-SHA256-for-64-byte code on 32-bit x86 (diff) | |
| parent | travis: Increase travis_wait time while verifying commits (diff) | |
| download | discoin-4b1edd318514074469769bb144a516797d78eccd.tar.xz discoin-4b1edd318514074469769bb144a516797d78eccd.zip | |
Merge #13447: travis: Increase travis_wait time while verifying commits
51ed05a2b9 travis: Increase travis_wait time while verifying commits (Chun Kuan Lee)
Pull request description:
From https://travis-ci.org/ken2812221/bitcoin-verify-commits/builds
I have run vecify-commits.py nightly on travis, as you can see that 30 minutes is not enough, it took 30-50 minutes to run the script with no extra options. So change it to 50 minutes would be better. Forgot to change this at #13066
Tree-SHA512: fced346edcb7dc626fa6e714d7db9a34d3e9f283ada64e19c30565ed214f72e26a57a905b4eb71ab24a16c97a1bd35e57e9a83dbb7dc1fff2db26505b810e61e
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 42ea5fdc4..6f832dbc2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -104,5 +104,5 @@ jobs: - test/lint/lint-all.sh - if [ "$TRAVIS_REPO_SLUG" = "bitcoin/bitcoin" -a "$TRAVIS_EVENT_TYPE" = "cron" ]; then while read LINE; do travis_retry gpg --keyserver hkp://subset.pool.sks-keyservers.net --recv-keys $LINE; done < contrib/verify-commits/trusted-keys && - travis_wait 30 contrib/verify-commits/verify-commits.py; + travis_wait 50 contrib/verify-commits/verify-commits.py; fi |