From 8e3c1d87f1b725afcbdbabbd05a4112359f2f769 Mon Sep 17 00:00:00 2001 From: Keiichi Watanabe Date: Wed, 3 Mar 2021 23:11:36 +0900 Subject: [PATCH] Add custom pipeline yaml for wider clippy coverage Fixes #25. Signed-off-by: Keiichi Watanabe --- .buildkite/pipeline.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .buildkite/pipeline.yml diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml new file mode 100644 index 00000000..fc4a4f73 --- /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