Commenting out clippy, since he's not coming until later.

This commit is contained in:
Luke Anderson 2019-03-21 16:08:14 +11:00
parent 129631886b
commit 6d5bba1dcc
No known key found for this signature in database
GPG Key ID: 44408169EC61E228
2 changed files with 4 additions and 2 deletions

View File

@ -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

3
Jenkinsfile vendored
View File

@ -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') {