Moved rustfmt commands after build, so that it passes.
Also added clippy into CI checks, but allowing warnings to pass for now.
This commit is contained in:
parent
5c20e2272f
commit
6bc977b9e6
@ -7,8 +7,9 @@ before_install:
|
|||||||
- sudo chown $USER /usr/local/bin/protoc
|
- sudo chown $USER /usr/local/bin/protoc
|
||||||
- sudo chown -R $USER /usr/local/include/google
|
- sudo chown -R $USER /usr/local/include/google
|
||||||
script:
|
script:
|
||||||
- cargo fmt --all -- --check
|
|
||||||
- cargo build --verbose --all
|
- cargo build --verbose --all
|
||||||
|
- cargo fmt --all -- --check
|
||||||
|
- cargo clippy
|
||||||
- cargo test --verbose --all
|
- cargo test --verbose --all
|
||||||
rust:
|
rust:
|
||||||
- stable
|
- stable
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
FROM rust:latest
|
FROM rust:latest
|
||||||
|
|
||||||
RUN rustup component add rustfmt
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y clang libclang-dev cmake build-essential git unzip autoconf libtool
|
RUN apt-get update && apt-get install -y clang libclang-dev cmake build-essential git unzip autoconf libtool
|
||||||
|
|
||||||
RUN git clone https://github.com/google/protobuf.git && \
|
RUN git clone https://github.com/google/protobuf.git && \
|
||||||
@ -17,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
|
||||||
|
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
@ -2,20 +2,21 @@ pipeline {
|
|||||||
agent {
|
agent {
|
||||||
dockerfile {
|
dockerfile {
|
||||||
filename 'Dockerfile'
|
filename 'Dockerfile'
|
||||||
args '-v cargo-cache:/cargocache:rw -e "CARGO_HOME=/cargocache"'
|
args '-v cargo-cache:/cargocache:rw'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('Check') {
|
|
||||||
steps {
|
|
||||||
sh 'cargo fmt --all -- --check'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
sh 'cargo build'
|
sh 'cargo build'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('Check') {
|
||||||
|
steps {
|
||||||
|
sh 'cargo fmt --all -- --check'
|
||||||
|
sh 'cargo clippy'
|
||||||
|
}
|
||||||
|
}
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
sh 'cargo test --all'
|
sh 'cargo test --all'
|
||||||
|
Loading…
Reference in New Issue
Block a user