From 713f671d96081547a7a9edab5288d3d9182d91eb Mon Sep 17 00:00:00 2001
From: Bertrand GAUTHIER <bertrand.gauthier@unicaen.fr>
Date: Fri, 22 Sep 2023 11:07:23 +0200
Subject: [PATCH] .gitlab-ci.yml : abandon du build en PHP 7.3 et 7.4

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e548fce..120ea35 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,30 +4,6 @@ before_script:
 stages:
   - build
 
-build7.3:
-  stage: build
-  script:
-    - export HTTP_PROXY=http://10.14.128.99:3128
-    - export PHP_VERSION=7.3
-    - docker build --rm --build-arg PHP_VERSION=${PHP_VERSION} --build-arg HTTP_PROXY=${HTTP_PROXY} -f Dockerfile -t sygal-image-php${PHP_VERSION} .
-    - docker tag sygal-image-php${PHP_VERSION} registre.unicaen.fr:5000/sygal-image-php${PHP_VERSION}
-    - docker push registre.unicaen.fr:5000/sygal-image-php${PHP_VERSION}
-    - docker build --rm --build-arg PHP_VERSION=${PHP_VERSION} --build-arg HTTP_PROXY=${HTTP_PROXY} -f Dockerfile -t open-source/docker/sygal-image:php${PHP_VERSION} .
-    - docker tag open-source/docker/sygal-image:php${PHP_VERSION} registre.unicaen.fr:5000/open-source/docker/sygal-image:php${PHP_VERSION}
-    - docker push registre.unicaen.fr:5000/open-source/docker/sygal-image:php${PHP_VERSION}
-
-build7.4:
-  stage: build
-  script:
-    - export HTTP_PROXY=http://10.14.128.99:3128
-    - export PHP_VERSION=7.4
-    - docker build --rm --build-arg PHP_VERSION=${PHP_VERSION} --build-arg HTTP_PROXY=${HTTP_PROXY} -f Dockerfile -t sygal-image-php${PHP_VERSION} .
-    - docker tag sygal-image-php${PHP_VERSION} registre.unicaen.fr:5000/sygal-image-php${PHP_VERSION}
-    - docker push registre.unicaen.fr:5000/sygal-image-php${PHP_VERSION}
-    - docker build --rm --build-arg PHP_VERSION=${PHP_VERSION} --build-arg HTTP_PROXY=${HTTP_PROXY} -f Dockerfile -t open-source/docker/sygal-image:php${PHP_VERSION} .
-    - docker tag open-source/docker/sygal-image:php${PHP_VERSION} registre.unicaen.fr:5000/open-source/docker/sygal-image:php${PHP_VERSION}
-    - docker push registre.unicaen.fr:5000/open-source/docker/sygal-image:php${PHP_VERSION}
-
 build8.0:
   stage: build
   script:
-- 
GitLab