Skip to content
Snippets Groups Projects

Add automatic tag fetching from remote repo

Merged Kalin Daskalov requested to merge update-tag into main
Files
4
+ 11
6
@@ -7,6 +7,7 @@ variables:
stages:
- test
- getinfo
- build
- manifest
- lint
@@ -15,11 +16,10 @@ stages:
include:
- project: "${HELPERS_PATH}"
file: 'build-eclipse.yml'
file: "build-eclipse.yml"
- template: "Workflows/Branch-Pipelines.gitlab-ci.yml"
- project: "${HELPERS_PATH}"
file: 'helm-eclipse.yml'
file: "helm-eclipse.yml"
lint:
image: golangci/golangci-lint:latest
@@ -34,7 +34,7 @@ lint:
- cd /go/src/gitlab.com/${CI_PROJECT_PATH}/app
unit tests:
image: golang:1.21.3
image: golang:1.21.4
stage: test
tags:
- amd64-docker
@@ -48,7 +48,7 @@ unit tests:
coverage: '/total:\s+\(statements\)\s+(\d+.\d+\%)/'
govulncheck:
image: golang:1.21.3
image: golang:1.21.4
stage: test
tags:
- amd64-docker
@@ -60,6 +60,11 @@ govulncheck:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...
check_commit:
extends: .check_commit
stage: getinfo
tags:
- amd64-docker
amd64:
extends: .docker-build
stage: build
@@ -67,7 +72,7 @@ amd64:
- amd64-docker
manifest:
extends: .manifest-amd64
extends: .manifest
stage: manifest
cloud:
Loading