diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cbfbc8d1e29d04e178263d4318f2fa4915b0e503..7457b096a0cb469dc710bc9493e71613638c29b0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,13 +17,15 @@ cargo-fmt:
   script:
     - rustup component add rustfmt
     - cargo fmt -- --check
+  allow_failure: true
 
 clippy:
   stage: lint
   image: rust:latest
   script:
     - rustup component add clippy
-    - cargo clippy -- -D warnings # Turn all warnings into errors
+    - cargo clippy --
+  allow_failure: true
 
 # Building
 rust-stable: