From 16b22fd975375bbd81300cd2e53f5f1e1b0f65be Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Wed, 11 Dec 2024 10:11:23 +0100 Subject: [PATCH] refactor: remove unnecessary variables and services Eliminate unused DOCKER_HOST variable and Docker service from CI configuration. This simplifies the setup and improves build performance by reducing overhead. --- .gitlab-ci.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c97a687..95c0b05 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,15 +1,10 @@ stages: - build -variables: - DOCKER_HOST: tcp://docker:2375/ - image: buildtool/build-tools:${BUILDTOOLS_VERSION} build: stage: build - services: - - docker:${DOCKER_DIND_VERSION} script: - build - push