diff options
author | Stuart Stock <stuart@int08h.com> | 2019-11-02 17:57:10 -0500 |
---|---|---|
committer | Stuart Stock <stuart@int08h.com> | 2019-11-02 17:57:10 -0500 |
commit | 9ee05c527ffccb7b76ac5dff885d5ee27f260996 (patch) | |
tree | 217fcc1cdcad498f605605172d84f976c23c38b6 | |
parent | 3249213df2e50ecb8214ffd91196c404448a0102 (diff) | |
download | roughenough-9ee05c527ffccb7b76ac5dff885d5ee27f260996.zip |
Prefix cargo build/test with 'travis_wait' to enable >10 min build
Starting from build https://travis-ci.org/int08h/roughenough/jobs/596836299
the AWS KMS build began taking >10 minutes, which Travis will abort
as a build failure.
Use of 'travis_wait' suggested in docs as a mitigation.
https://docs.travis-ci.com/user/common-build-problems/#build-times-out-because-no-output-was-received
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index ab98237..fff0ab3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,5 +15,5 @@ matrix: fast_finish: true script: - - cargo build --verbose --features $FEATURE - - cargo test --verbose --features $FEATURE + - travis_wait cargo build --verbose --features $FEATURE + - travis_wait cargo test --verbose --features $FEATURE |