As we reevaluate how to best support and maintain Staging Ref in the future, we encourage development teams using this environment to highlight their use cases in the following issue: https://gitlab.com/gitlab-com/gl-infra/software-delivery/framework/software-delivery-framework-issue-tracker/-/issues/36.

Skip to content
Snippets Groups Projects
Commit 63c9359a authored by Igor Drozdov's avatar Igor Drozdov
Browse files

Merge branch 'ci/go-1.18' into 'main'

ci: start integrating go 1.18 into the CI pipelines

See merge request gitlab-org/gitlab-shell!587
parents 969bf2e2 740bff97
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -55,23 +55,19 @@ default:
script:
- make verify test
go:1.16:
tests:
extends: .test
image: golang:1.16
after_script:
- make coverage
coverage: '/\d+.\d+%/'
go:1.17:
extends: .test
image: golang:1.17
image: golang:${GO_VERSION}
parallel:
matrix:
- GO_VERSION: ["1.16", "1.17", "1.18"]
after_script:
- make coverage
coverage: '/\d+.\d+%/'
race:
extends: .test
image: golang:1.17
image: golang:1.18
script:
- make test_golang_race
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment