From 45224547d67df15650d2643acf11b70a855b73f0 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Fri, 6 Dec 2024 08:56:33 +0100 Subject: [PATCH] refactor(ci): remove unused Docker variables from config This change eliminates unnecessary Docker variable definitions from the .gitlab-ci.yml file, simplifying the CI configuration and reducing complexity in the build process. The removed variables were not in use and did not contribute to the current build steps, streamlining the configuration for better maintainability. --- .gitlab-ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 113e877..d8e4822 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,13 +6,6 @@ include: stages: - build -variables: - DOCKER_HOST: tcp://docker:2376 - DOCKER_TLS_CERTDIR: "/certs" - DOCKER_TLS_VERIFY: 1 - DOCKER_CERT_PATH: "$DOCKER_TLS_CERTDIR/client" - DOCKER_DRIVER: overlay2 - image: buildtool/build-tools:${BUILDTOOLS_VERSION} build: