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
Unverified Commit aa205f3e authored by Ash McKenzie's avatar Ash McKenzie
Browse files

Make Go and Ruby versions more readable in CI

parent 10b61aed
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -10,9 +10,9 @@ include:
variables:
DOCKER_VERSION: "20.10.15"
BUNDLE_FROZEN: "true"
GO_VERSION: "1.18"
GO_VERSION: "golang-1.18"
DEBIAN_VERSION: "bullseye"
RUBY_VERSION: "2.7"
RUBY_VERSION: "ruby-2.7"
workflow:
rules: &workflow_rules
Loading
Loading
@@ -24,7 +24,7 @@ workflow:
- if: '$CI_COMMIT_TAG'
default:
image: registry.gitlab.com/gitlab-org/gitlab-build-images/debian-${DEBIAN_VERSION}-ruby-${RUBY_VERSION}-golang-${GO_VERSION}:git-2.36
image: registry.gitlab.com/gitlab-org/gitlab-build-images/debian-${DEBIAN_VERSION}-${RUBY_VERSION}-${GO_VERSION}:git-2.36
tags:
- gitlab-org
Loading
Loading
@@ -56,8 +56,8 @@ tests:
extends: .test
parallel:
matrix:
- GO_VERSION: ["1.17", "1.18", "1.19"]
- RUBY_VERSION: ["2.7", "3.0"]
- GO_VERSION: ["golang-1.17", "golang-1.18", "golang-1.19"]
- RUBY_VERSION: ["ruby-2.7", "ruby-3.0"]
script:
- make verify test
after_script:
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