Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
signer
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaia-X
Trust Services API
signer
Commits
4cecb7f9
Commit
4cecb7f9
authored
2 years ago
by
Valeri Fikov
Browse files
Options
Downloads
Patches
Plain Diff
renamed old .gitlab-ci.yml and created new one
parent
1b8296f9
No related branches found
Branches containing commit
Tags
0.0.0
Tags containing commit
1 merge request
!6
renamed old .gitlab-ci.yml and created new one
Pipeline
#51662
passed with stages
Stage:
Stage:
Stage:
in 1 minute and 54 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+38
-9
38 additions, 9 deletions
.gitlab-ci.yml
.gitlab-ci.yml.old
+25
-0
25 additions, 0 deletions
.gitlab-ci.yml.old
with
63 additions
and
9 deletions
.gitlab-ci.yml
+
38
−
9
View file @
4cecb7f9
variables
:
APP_HELM_NAME
:
signer
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.4
6
.2
image
:
golangci/golangci-lint:v1.4
4
.2
stage
:
test
tags
:
-
amd64-docker
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.10
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
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml.old
0 → 100644
+
25
−
0
View file @
4cecb7f9
stages:
- test
before_script:
- ln -s /builds /go/src/code.vereign.com
- cd /go/src/code.vereign.com/${CI_PROJECT_PATH}
lint:
image: golangci/golangci-lint:v1.46.2
stage: test
tags:
- amd64-docker
script:
- golangci-lint --version
- golangci-lint run
unit tests:
image: golang:1.17.10
stage: test
tags:
- amd64-docker
script:
- go version
- go test -race ./... -coverprofile=coverage.out
- go tool cover -func=coverage.out
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment