Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Martinez <jmartinez@gitlab.com>2022-03-16 06:57:37 +0300
committerJaime Martinez <jmartinez@gitlab.com>2022-03-16 06:57:37 +0300
commit8d0041e051d16bb44208a5992e88ff7cd33a14e8 (patch)
treef6968bfdcc66a78d2209ee44b03ccf75920f556b
parent7f9950f17e2a9e5bd55878d5a7fbf9db6ad29cfb (diff)
parent4085c884f798af981c31148300e38735da5b8e81 (diff)
Merge branch 'ci/go-1.18' into 'master'
ci: start integrating go 1.18 into the CI pipelines See merge request gitlab-org/gitlab-pages!712
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--.gitlab/ci/test.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3ffbfba8..e446cf2e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -19,7 +19,7 @@ include:
- local: .gitlab/ci/test.yml
default:
- image: golang:1.17
+ image: golang:1.18
tags:
- gitlab-org
diff --git a/.gitlab/ci/test.yml b/.gitlab/ci/test.yml
index e9bca5d6..0be07471 100644
--- a/.gitlab/ci/test.yml
+++ b/.gitlab/ci/test.yml
@@ -11,7 +11,7 @@
image: golang:${GO_VERSION}
parallel:
matrix:
- - GO_VERSION: ["1.16", "1.17"]
+ - GO_VERSION: ["1.16", "1.17", "1.18"]
tests:
extends: .tests-matrix