From f5d3e18992f10aea13196d3503c505e2a39ed2f7 Mon Sep 17 00:00:00 2001
From: Paul Dechamps <paul.dechamps@uliege.be>
Date: Thu, 30 Nov 2023 14:54:30 +0100
Subject: [PATCH] (pip) Fixed pipeline

Removed format check :passport_control:
---
 .gitlab-ci.yml | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d4c2bbc..95539fc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,21 +20,6 @@ stages:
     - build
     - test
 
-format:
-    <<: *global_tag_def
-    stage: build
-    script:
-        - clang-format --version # we use clang-format-10 exclusively
-        - ./scripts/format_code.py
-        - mkdir -p patches
-        - if git diff --patch --exit-code > patches/clang-format.patch; then echo "Clang format changed nothing"; else echo "Clang format found changes to make!"; false; fi
-    artifacts:
-        paths:
-            - patches/
-        expire_in: 1 day
-        when: on_failure
-    allow_failure: true
-
 build:
     <<: *global_tag_def
     stage: build
-- 
GitLab