Update CI targets to include only Go 1.20 and 1.21

To keep up with our dependencies, we no longer support versions of Go
older than v1.20.
This commit is contained in:
Cecylia Bocovich 2023-09-19 11:13:50 -04:00
parent f4e1ab90c8
commit 2844ac6a13
No known key found for this signature in database
GPG key ID: 009DE379FD9B7B90

View file

@ -142,20 +142,6 @@ android:
- go get golang.org/x/mobile/bind - go get golang.org/x/mobile/bind
- gomobile bind -v -target=android $REPRODUCIBLE_FLAGS . - gomobile bind -v -target=android $REPRODUCIBLE_FLAGS .
go-1.18:
image: golang:1.18-$DEBIAN_OLD_STABLE
<<: *golang-docker-debian-template
<<: *test-template
script:
- *go-test
go-1.19:
image: golang:1.19-$DEBIAN_STABLE
<<: *golang-docker-debian-template
<<: *test-template
script:
- *go-test
go-1.20: go-1.20:
image: golang:1.20-$DEBIAN_STABLE image: golang:1.20-$DEBIAN_STABLE
<<: *golang-docker-debian-template <<: *golang-docker-debian-template
@ -163,6 +149,13 @@ go-1.20:
script: script:
- *go-test - *go-test
go-1.21:
image: golang:1.21-$DEBIAN_STABLE
<<: *golang-docker-debian-template
<<: *test-template
script:
- *go-test
debian-testing: debian-testing:
image: debian:testing image: debian:testing
<<: *debian-native-template <<: *debian-native-template