From 9c11e479d0d6fdcad47c9f3d55179dd907422a3a Mon Sep 17 00:00:00 2001 From: Cecylia Bocovich <cohosh@torproject.org> Date: Fri, 10 Dec 2021 10:43:31 -0500 Subject: [PATCH] Update go versions in CI tests Debian packages Go 1.15 and 1.17, and we use 1.16 in Tor Browser. --- .gitlab-ci.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 08242671..5ec32fdc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -139,15 +139,22 @@ android: - go get golang.org/x/mobile/bind - gomobile bind -v -target=android $REPRODUCIBLE_FLAGS . -go-1.13: - image: golang:1.13-stretch +go-1.15: + image: golang:1.15-stretch <<: *golang-docker-debian-template <<: *test-template script: - *go-test -go-1.14: - image: golang:1.14-stretch +go-1.16: + image: golang:1.16-stretch + <<: *golang-docker-debian-template + <<: *test-template + script: + - *go-test + +go-1.17: + image: golang:1.17-stretch <<: *golang-docker-debian-template <<: *test-template script: -- GitLab