diff options
author | Chun Kuan Lee <ken2812221@gmail.com> | 2018-05-10 16:22:58 +0000 |
---|---|---|
committer | Chun Kuan Lee <ken2812221@gmail.com> | 2018-06-12 14:48:02 +0000 |
commit | e5b2cd8e7564b9fc2ed4f63fe49efb0af60b4460 (patch) | |
tree | 5355f07d0bf219960a672e34cc7501b614936e7d /.travis.yml | |
parent | e24bf1ce184bc8d5bba70a3f3e9c43c2df07f4d3 (diff) |
Use python instead of slow shell script on verify-commits
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 7cbe0b83f1..42ea5fdc44 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.sh; + travis_wait 30 contrib/verify-commits/verify-commits.py; fi |