summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorChristian Duerr <chrisduerr@users.noreply.github.com>2019-01-23 22:04:45 +0000
committerGitHub <noreply@github.com>2019-01-23 22:04:45 +0000
commit430b89c1599abde4fc8520ffcb0e25d9034bea8d (patch)
treeb73a7c637674ae3314a66f69ecb64f21d1624931 /.travis.yml
parent3be51e6aeace4ff14fc4fc20993cd80076487324 (diff)
Move clippy tests to stable
The clippy tests had to be run on nightly previously since it wasn't available with the stable compiler yet, however this had the potential to fail a lot since not all nightly builds offer clippy. Since clippy is now available for stable rust, moving clippy to a stable build should make sure that the failure rate of the CI job is cut down to a minimum. This fixes https://github.com/jwilm/alacritty/issues/2007.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 41f34e8c..1134792e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,6 +13,7 @@ os:
rust:
- stable
+ - beta
- nightly
matrix:
@@ -22,6 +23,18 @@ matrix:
os: linux
rust: stable
env: ARCH=i386
+ - name: "Clippy Linux"
+ os: linux
+ env: CLIPPY=true
+ rust: stable
+ - name: "Clippy OSX"
+ os: osx
+ env: CLIPPY=true
+ rust: stable
+ - name: "Clippy Windows"
+ os: windows
+ env: CLIPPY=true
+ rust: stable
allow_failures:
- rust: nightly