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 4c3f8494 authored by Igor Drozdov's avatar Igor Drozdov
Browse files

Add Golang 1.19 to CI

parent 8d46766f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -38,10 +38,7 @@ default:
GITALY_CONNECTION_INFO: '{"address":"tcp://gitaly:8075", "storage":"default"}'
before_script:
# Set up the environment to run integration tests (still written in Ruby)
- apt-get update -qq && apt-get install -y ruby ruby-dev
- ruby -v
- export PATH=~/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin
- gem install --force --bindir /usr/local/bin bundler -v 2.3.6
- bundle install
# Now set up to run the Golang tests
- make build
Loading
Loading
@@ -58,10 +55,10 @@ default:
tests:
extends: .test
image: golang:${GO_VERSION}
image: registry.gitlab.com/gitlab-org/gitlab-build-images/debian-bullseye-ruby-2.7-golang-${GO_VERSION}:git-2.36
parallel:
matrix:
- GO_VERSION: ["1.17", "1.18"]
- GO_VERSION: ["1.17", "1.18", "1.19"]
after_script:
- make coverage
coverage: '/\d+.\d+%/'
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