From 70083285d32c29d937fb78a3dfdfd566df9555c7 Mon Sep 17 00:00:00 2001 From: Kalin Daskalov <kalin.daskalov@vereign.com> Date: Thu, 5 Oct 2023 15:01:56 +0300 Subject: [PATCH] changes to ci file --- .gitlab-ci.yml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c78ebff..b78f3ea 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,6 @@ variables: HELPERS_FILE: docker-build.yml + HELM_HELPERS_FILE: helm.yml APP_HELM_NAME: task DOCKER_FILE: deployment/ci/Dockerfile @@ -7,13 +8,15 @@ stages: - compile - test - build - - manifest + - helm - deploy include: - project: '${HELPERS_PATH}' file: '${HELPERS_FILE}' - template: 'Workflows/Branch-Pipelines.gitlab-ci.yml' + - project: "$HELM_HELPERS_PATH}" + file: "${HELM_HELPERS_FILE}" lint: image: golangci/golangci-lint:v1.50.1 @@ -56,14 +59,8 @@ amd64: tags: - amd64-docker -manifest: - extends: .manifest-amd64 - stage: manifest - -cloud: - extends: .manifest-cloud - stage: manifest - -release: - extends: .manifest-release - stage: manifest +helm-lint: + extends: .helm-lint + stage: helm + tags: + - amd64-docker -- GitLab