Merge pull request #294 from sigp/ci-rustfmt
rustfmt & clippy in CI builds
This commit is contained in:
commit
75f1d38969
@ -12,6 +12,8 @@ script:
|
|||||||
- cargo test --verbose --all
|
- cargo test --verbose --all
|
||||||
- cargo test --verbose --release --all
|
- cargo test --verbose --release --all
|
||||||
- cargo fmt --all -- --check
|
- cargo fmt --all -- --check
|
||||||
|
# No clippy until later...
|
||||||
|
#- cargo clippy
|
||||||
rust:
|
rust:
|
||||||
- stable
|
- stable
|
||||||
- beta
|
- beta
|
||||||
@ -22,3 +24,4 @@ matrix:
|
|||||||
fast_finish: true
|
fast_finish: true
|
||||||
install:
|
install:
|
||||||
- rustup component add rustfmt
|
- rustup component add rustfmt
|
||||||
|
- rustup component add clippy
|
||||||
|
@ -15,3 +15,7 @@ RUN git clone https://github.com/google/protobuf.git && \
|
|||||||
|
|
||||||
|
|
||||||
RUN mkdir /cargocache && chmod -R ugo+rwX /cargocache
|
RUN mkdir /cargocache && chmod -R ugo+rwX /cargocache
|
||||||
|
|
||||||
|
ENV CARGO_HOME /cargocache
|
||||||
|
|
||||||
|
RUN rustup component add rustfmt clippy
|
||||||
|
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -12,6 +12,13 @@ pipeline {
|
|||||||
sh 'cargo build --verbose --all --release'
|
sh 'cargo build --verbose --all --release'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('Check') {
|
||||||
|
steps {
|
||||||
|
sh 'cargo fmt --all -- --check'
|
||||||
|
// No clippy until later...
|
||||||
|
//sh 'cargo clippy'
|
||||||
|
}
|
||||||
|
}
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
sh 'cargo test --verbose --all'
|
sh 'cargo test --verbose --all'
|
||||||
|
Loading…
Reference in New Issue
Block a user