From 17902011eda2f240c340bf283fc62ed01acb4cbd Mon Sep 17 00:00:00 2001 From: maik Date: Fri, 21 Jun 2019 11:12:07 +0200 Subject: [PATCH] Run clippy after the build on travis --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 470d4f6..ad3fcb4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,9 +20,10 @@ script: # Download in a separate step to separate # building from fetching dependencies - cargo fetch -# Because rust isn't brutal enough itself -- cargo clippy -- -D warnings # Build everything in a separate step to make a # clear distinction between building and testing - cargo test --no-run -vv - cargo test --no-fail-fast -vv +# Because rust isn't brutal enough itself +# We need to run it after the build, otherwise clippy will try to build MoltenVK and travis will time out +- cargo clippy -- -D warnings