aboutsummaryrefslogtreecommitdiff
path: root/.drone.yml
diff options
context:
space:
mode:
authorTrinity Pointard <trinity.pointard@gmail.com>2021-04-09 01:29:17 +0200
committerAlex Auvolat <alex@adnab.me>2021-05-03 22:11:37 +0200
commit88925ebe2210a8382b4d353fcab15d2b5c345efb (patch)
treee2f86821f3ceac6c3151398d7f0dac94c343e319 /.drone.yml
parent631c36b3ff76f9b09a5aed54dc343469a89f9989 (diff)
downloadgarage-88925ebe2210a8382b4d353fcab15d2b5c345efb.tar.gz
garage-88925ebe2210a8382b4d353fcab15d2b5c345efb.zip
add clippy to the CI
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml20
1 files changed, 15 insertions, 5 deletions
diff --git a/.drone.yml b/.drone.yml
index 1c2362ff..07f50771 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -36,8 +36,19 @@ steps:
branch:
- nonexistent_skip_this_step
+ - name: code quality
+ image: superboum/garage_builder_amd64:4
+ volumes:
+ - name: cargo_home
+ path: /drone/cargo
+ environment:
+ CARGO_HOME: /drone/cargo
+ commands:
+ - cargo fmt -- --check
+ - cargo clippy -- --deny warnings
+
- name: build
- image: superboum/garage_builder_amd64:3
+ image: superboum/garage_builder_amd64:4
volumes:
- name: cargo_home
path: /drone/cargo
@@ -45,11 +56,10 @@ steps:
CARGO_HOME: /drone/cargo
commands:
- pwd
- - cargo fmt -- --check
- cargo build
- name: cargo-test
- image: superboum/garage_builder_amd64:3
+ image: superboum/garage_builder_amd64:4
volumes:
- name: cargo_home
path: /drone/cargo
@@ -85,7 +95,7 @@ steps:
- nonexistent_skip_this_step
- name: smoke-test
- image: superboum/garage_builder_amd64:3
+ image: superboum/garage_builder_amd64:4
volumes:
- name: cargo_home
path: /drone/cargo
@@ -129,6 +139,6 @@ steps:
---
kind: signature
-hmac: d584c2a15ede6d5702fbe27ae5ae2b2bf7a04461ae7aed2d53cbda83b7fd503e
+hmac: e919f8a66d20ebfeeec56b291a8a0fdd59a482601da987fcf533d96d24768744
...