summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeiichi Watanabe <keiichiw@chromium.org>2021-03-03 23:11:36 +0900
committerJiang Liu <gerry@linux.alibaba.com>2021-05-18 16:01:08 +0800
commitf338330bd7d29682f64182c8aa30c93682ae6752 (patch)
treecf34342f3f533017e41ccaabbaa182b24a401c76
parente5b930b73a47cbdd79858e2e68bcb57123d1c1f3 (diff)
downloadvmm_vhost-f338330bd7d29682f64182c8aa30c93682ae6752.tar.gz
Add custom pipeline yaml for wider clippy coverage
Fixes #25. Signed-off-by: Keiichi Watanabe <keiichiw@chromium.org>
-rw-r--r--.buildkite/pipeline.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml
new file mode 100644
index 0000000..fc4a4f7
--- /dev/null
+++ b/.buildkite/pipeline.yml
@@ -0,0 +1,17 @@
+# Copyright 2021 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE-BSD-Google file.
+
+steps:
+ - label: "clippy-x86-custom"
+ commands:
+ - cargo clippy --all-features --all-targets --workspace -- -D warnings
+ retry:
+ automatic: false
+ agents:
+ platform: x86_64.metal
+ os: linux
+ plugins:
+ - docker#v3.0.1:
+ image: "rustvmm/dev:v11"
+ always-pull: true