From 0e0ecbb3f7677c6426d4f4ac8d82d5c2445209eb Mon Sep 17 00:00:00 2001 From: Kalin Daskalov <kalin.daskalov@vereign.com> Date: Thu, 5 Oct 2023 15:01:05 +0300 Subject: [PATCH] changes to ci file --- .gitlab-ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3e9cb70..23f0916 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ variables: HELPERS_FILE: docker-build.yml - HELM_HELPERS_FILE: helm-package.yml + HELM_HELPERS_FILE: helm.yml APP_HELM_NAME: infohub DOCKER_FILE: deployment/ci/Dockerfile @@ -8,6 +8,7 @@ stages: - compile - test - build + - helm - deploy include: @@ -29,12 +30,6 @@ lint: - ln -s /builds /go/src/gitlab.com - cd /go/src/gitlab.com/${CI_PROJECT_PATH} -helm-lint: - extends: .helm-lint - stage: test - tags: - - amd64-docker - unit tests: image: golang:1.20.5 extends: .gotest @@ -57,9 +52,14 @@ govulncheck: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... - amd64: extends: .docker-build stage: build tags: - amd64-docker + +helm-lint: + extends: .helm-lint + stage: helm + tags: + - amd64-docker -- GitLab