From e1158a9fab2207ac4efbf17c1705e5b8ab33dee7 Mon Sep 17 00:00:00 2001 From: Tancho Mihov <tancho.mihov@cleverpine.com> Date: Mon, 20 Jun 2022 15:03:04 +0000 Subject: [PATCH] Add cicd --- .gitlab-ci.yml | 43 ++++++++++++++++++++++++++++++++++++------- 1 file changed, 36 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index acbc2bf..b19518b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,19 @@ +variables: + APP_HELM_NAME: cache + DOCKER_FILE: deployment/ci/Dockerfile + GOOGLE_IMAGE: ${GOOGLE_LIGHT_REGISTRY_URL}/gaiax/$CI_PROJECT_NAME:$CI_COMMIT_REF_NAME + stages: + - compile - test + - build + - manifest + - deploy -before_script: - - ln -s /builds /go/src/code.vereign.com - - cd /go/src/code.vereign.com/${CI_PROJECT_PATH} +include: + - project: 'gaiax/tsa/ci-helpers' + file: 'docker-build.yml' + - template: 'Workflows/Branch-Pipelines.gitlab-ci.yml' lint: image: golangci/golangci-lint:v1.44.2 @@ -13,13 +23,32 @@ lint: script: - golangci-lint --version - golangci-lint run + before_script: + - ln -s /builds /go/src/code.vereign.com + - cd /go/src/code.vereign.com/${CI_PROJECT_PATH} unit tests: image: golang:1.17.7 + extends: .gotest stage: test tags: - amd64-docker - script: - - go version - - go test -race ./... -coverprofile=coverage.out - - go tool cover -func=coverage.out + before_script: [] + +amd64: + extends: .docker-build + stage: build + tags: + - amd64-docker + +manifest: + extends: .manifest-amd64 + stage: manifest + +cloud: + extends: .manifest-cloud + stage: manifest + +release: + extends: .manifest-release + stage: manifest -- GitLab