diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c16633694c27cb851c435f02591bb4090e58fae3..20ad6ebf4f2a519e2aa0fa8e3a01c80470053df2 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: cache 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.19.4 extends: .gotest @@ -62,3 +57,9 @@ amd64: stage: build tags: - amd64-docker + +helm-lint: + extends: .helm-lint + stage: helm + tags: + - amd64-docker