From 7c3d9ab57dd7b2aa54b24c7282a2a16d5e4a0798 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=A9dric=20Moreau?= <cedric.moreau@monemprunt.com>
Date: Fri, 8 Apr 2022 20:15:58 +0200
Subject: [PATCH] fix(build): disable quality phase

---
 .gitlab-ci.yml | 25 -------------------------
 1 file changed, 25 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index be1965504..35405db28 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,6 @@
 stages:
   - tests
   - package
-  - quality
   - integration
   - prerelease
   - release
@@ -98,30 +97,6 @@ tests:
       - coverage.tar.gz
     expire_in: 72h
 
-fmt_and_clippy:
-  extends: .env
-  rules:
-    - if: $CI_COMMIT_TAG
-      when: never
-    - if: $CI_MERGE_REQUEST_ID
-    - when: on_success
-  stage: quality
-  script:
-    - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
-    - export PATH="$HOME/.cargo/bin:$PATH"
-    - cargo fmt -- --version
-    - cargo fmt -- --check
-    - cargo clippy -- -V
-    - cargo clippy --all --tests -- -D warnings --verbose
-    
-audit_dependencies:
-  extends: .rust_env
-  before_script:
-    - cargo deny -V
-  stage: quality
-  script:
-    - cargo deny check
-
 .integration_rules: &integration_rules
   allow_failure: true
   rules:
-- 
GitLab