Add cargo fmt and clippy checks to drone CI
This commit is contained in:
parent
940750b5db
commit
6c8dd95d20
1 changed files with 9 additions and 44 deletions
53
.drone.yml
53
.drone.yml
|
@ -16,28 +16,16 @@ steps:
|
||||||
- cd netapp
|
- cd netapp
|
||||||
- git checkout $DRONE_COMMIT
|
- git checkout $DRONE_COMMIT
|
||||||
|
|
||||||
- name: restore-cache
|
- name: style
|
||||||
image: meltwater/drone-cache:dev
|
image: rustlang/rust:nightly
|
||||||
environment:
|
environment:
|
||||||
AWS_ACCESS_KEY_ID:
|
CARGO_HOME: /drone/cargo
|
||||||
from_secret: cache_aws_access_key_id
|
commands:
|
||||||
AWS_SECRET_ACCESS_KEY:
|
- cd netapp
|
||||||
from_secret: cache_aws_secret_access_key
|
- cargo fmt -- --check
|
||||||
pull: true
|
- cargo clippy --all-features -- --deny warnings
|
||||||
settings:
|
- cargo clippy --example fullmesh -- --deny warnings
|
||||||
restore: true
|
- cargo clippy --example basalt --all-features -- --deny warnings
|
||||||
archive_format: "gzip"
|
|
||||||
bucket: drone-cache
|
|
||||||
cache_key: '{{ .Repo.Name }}_{{ checksum "netapp/Cargo.lock" }}_{{ arch }}_{{ os }}_gzip'
|
|
||||||
region: garage
|
|
||||||
mount:
|
|
||||||
- 'netapp/target'
|
|
||||||
- 'cargo/registry/index'
|
|
||||||
- 'cargo/registry/cache'
|
|
||||||
- 'cargo/bin'
|
|
||||||
- 'cargo/git/db'
|
|
||||||
path_style: true
|
|
||||||
endpoint: https://garage.deuxfleurs.fr
|
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: rustlang/rust:nightly
|
image: rustlang/rust:nightly
|
||||||
|
@ -51,26 +39,3 @@ steps:
|
||||||
- cargo build-all-features
|
- cargo build-all-features
|
||||||
- cargo build --example fullmesh
|
- cargo build --example fullmesh
|
||||||
- cargo build --example basalt --features "basalt"
|
- cargo build --example basalt --features "basalt"
|
||||||
|
|
||||||
- name: rebuild-cache
|
|
||||||
image: meltwater/drone-cache:dev
|
|
||||||
environment:
|
|
||||||
AWS_ACCESS_KEY_ID:
|
|
||||||
from_secret: cache_aws_access_key_id
|
|
||||||
AWS_SECRET_ACCESS_KEY:
|
|
||||||
from_secret: cache_aws_secret_access_key
|
|
||||||
pull: true
|
|
||||||
settings:
|
|
||||||
rebuild: true
|
|
||||||
archive_format: "gzip"
|
|
||||||
bucket: drone-cache
|
|
||||||
cache_key: '{{ .Repo.Name }}_{{ checksum "netapp/Cargo.lock" }}_{{ arch }}_{{ os }}_gzip'
|
|
||||||
region: garage
|
|
||||||
mount:
|
|
||||||
- 'netapp/target'
|
|
||||||
- 'cargo/registry/index'
|
|
||||||
- 'cargo/registry/cache'
|
|
||||||
- 'cargo/bin'
|
|
||||||
- 'cargo/git/db'
|
|
||||||
path_style: true
|
|
||||||
endpoint: https://garage.deuxfleurs.fr
|
|
||||||
|
|
Loading…
Reference in a new issue