diff options
author | Nick Thomas <nick@gitlab.com> | 2021-03-13 01:45:41 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2021-03-13 01:45:41 +0000 |
commit | b49c1d4e477974d28df70e468034e823de0c3da6 (patch) | |
tree | c7f00a68e25dfff11e5ab5c5f7a7496eda24f592 | |
parent | 2cdd633f118307a92e43aac75b49e2a82c026d43 (diff) | |
download | gitlab-shell-update-golang-versions.tar.gz |
Compile against go 1.14-1.16update-golang-versions
-rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fc588f4..64ac9c1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,7 +17,7 @@ workflow: - if: '$CI_COMMIT_TAG' default: - image: golang:1.13 + image: golang:1.14 tags: - gitlab-org @@ -45,10 +45,6 @@ default: script: - make verify test -go:1.13: - extends: .test - image: golang:1.13 - go:1.14: extends: .test image: golang:1.14 @@ -63,9 +59,16 @@ go:1.15: - make coverage coverage: '/\d+.\d+%/' +go:1.16: + extends: .test + image: golang:1.16 + after_script: + - make coverage + coverage: '/\d+.\d+%/' + race: extends: .test - image: golang:1.15 + image: golang:1.16 script: - make test_golang_race |