From e39a0e4de28a8a740dca4c98661363c104639297 Mon Sep 17 00:00:00 2001 From: Jon Bauman <5906042+baumanj@users.noreply.github.com> Date: Tue, 16 Apr 2019 10:01:59 -0400 Subject: [PATCH] Make clippy use single-use queues and no retries There's no need to retry clippy commands, they should be deterministic. Additionally re-using a container may cause us to get false positives due to https://github.com/rust-lang/rust-clippy/issues/2604. This change should help us avoid that. Signed-off-by: Jon Bauman <5906042+baumanj@users.noreply.github.com> --- .expeditor/verify.pipeline.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 4f0d69184a..638b930d7d 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -42,19 +42,14 @@ steps: agents: queue: 'single-use-privileged' timeout_in_minutes: 10 - retry: - automatic: - limit: 1 + - label: "[lint] :windows: :paperclip: clippy!" command: - .\test\run_clippy.ps1 stable .\test\unexamined_lints.txt .\test\allowed_lints.txt .\test\lints_to_fix.txt .\test\denied_lints.txt agents: - queue: 'default-windows-privileged' + queue: 'single-use-windows-privileged' timeout_in_minutes: 25 - retry: - automatic: - limit: 1 ####################################################################### # Unit Tests - Linux!