diff options
author | Anthony Fok <[email protected]> | 2019-11-07 16:27:47 -0700 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2019-11-08 08:24:41 +0100 |
commit | cafecca440e495ec915cc6290fe09d2a343e9c95 (patch) | |
tree | c024907b6cc654a27133cb4efd5cfcb3b7f7f959 /.travis.yml | |
parent | 5f6b6ec68936ebbbf590894c02a1a3ecad30735f (diff) | |
download | hugo-cafecca440e495ec915cc6290fe09d2a343e9c95.tar.gz hugo-cafecca440e495ec915cc6290fe09d2a343e9c95.zip |
travis: Increase timeout to 30000 for mage -v check
The default timeout of 15000 millisecond is too short
for go test -race on arm64.
See golang/go#35308
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 923852c04..dc2c13e90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,7 +69,7 @@ script: - if [ "$TRAVIS_ARCH" = "amd64" ]; then mage -v check; else - mage -v check || true; + HUGO_TIMEOUT=30000 mage -v check; fi - mage -v hugo - ./hugo -s docs/ |