From 2f1b9b0dd34d1bd857efef8186855e56d69adccc Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sat, 28 Nov 2020 19:44:08 +0100 Subject: [PATCH] Disable clippy beta on CI [0] triggers a false-positive that prevents progress. Since I have no good idea what to do about that, my bad idea is to just disable this part of CI: [0]: https://github.com/psychon/x11rb/pull/561 [1]: https://github.com/rust-lang/rust/issues/79498 Signed-off-by: Uli Schlachter --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 98138cb4..27bd28f5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -31,7 +31,8 @@ jobs: matrix: include: - rust: stable - - rust: beta + #fixme: beta was disabled due to the false positive from https://github.com/rust-lang/rust/issues/79498 + #- rust: beta #fixme: remove this hack clippy_args: -A clippy::manual_strip steps: