From e444fe1ffd7db39f5404540936849897fd487d53 Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Tue, 5 Oct 2021 00:21:14 +0100 Subject: [PATCH] gitlab: Update minimal supported version With the new Debian stable release, we now support back to Go 1.15. Update the automated tests to reflect this. --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 782e718..8540014 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,11 +16,9 @@ stages: - su testing -c "go test ./..." - su testing -c "go test -race ./..." -golang_1.11: +golang_1.15: <<: *golang - image: golang:1.11 # Version in Debian stable. - variables: - GO111MODULE: "on" + image: golang:1.15 # Version in Debian stable. golang_latest: <<: *golang