From fd14208cabfd3f5a31bdab67e8de37532c7344be Mon Sep 17 00:00:00 2001 From: Kalin Daskalov <kalin.daskalov@vereign.com> Date: Thu, 5 Oct 2023 15:01:41 +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 50d6fc8..6d8e1ad 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: signer 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:latest @@ -60,14 +63,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