From 6d5bba1dcca492780526deec2f806bee6eb0ea14 Mon Sep 17 00:00:00 2001 From: Luke Anderson Date: Thu, 21 Mar 2019 16:08:14 +1100 Subject: [PATCH] Commenting out clippy, since he's not coming until later. --- .travis.yml | 3 ++- Jenkinsfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0d520aabb4..b6cab34662 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,8 @@ before_install: script: - cargo build --verbose --all - cargo fmt --all -- --check - - cargo clippy + # No clippy until later... + #- cargo clippy - cargo test --verbose --all rust: - stable diff --git a/Jenkinsfile b/Jenkinsfile index da032ce5ba..e217a6130d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,8 @@ pipeline { stage('Check') { steps { sh 'cargo fmt --all -- --check' - sh 'cargo clippy' + // No clippy until later... + //sh 'cargo clippy' } } stage('Test') {