Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-11-01 12:15:28 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-11-01 12:27:01 +0300
commitba20fc735e196e4f9ea7c0a6d2ec3f9efef8cc00 (patch)
treeeef8369921f2573b23d09e753b995f6e541f4d50 /.gitlab-ci.yml
parenta8250abbf1eeff3ee277d93f166c3fd4983d7af3 (diff)
ci: Only warn about unknown lints instead of denying
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 33fc72cdf..9a55c534d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -380,7 +380,7 @@ clippy:
rules:
- when: 'always'
script:
- - cargo clippy --locked --color=always --all --all-features --all-targets -- -D warnings
+ - cargo clippy --locked --color=always --all --all-features --all-targets -- -D warnings -A unknown-lints
deny:
extends: .img-stable