Skip to content

Commit

Permalink
Remove old Go versions from CI
Browse files Browse the repository at this point in the history
Looks like we were accidentally running older versions of Go in Circle CI. We have the stable and oldstable versions from Github Actions, so I guess we can stop running these 3x.
  • Loading branch information
dnephin authored Sep 5, 2024
1 parent 5ac93f2 commit 5483289
Showing 1 changed file with 2 additions and 23 deletions.
25 changes: 2 additions & 23 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,6 @@ orbs:
workflows:
ci:
jobs:
- go/test:
name: test-go-1.22
gotestsum-format: testname
executor:
name: go/golang
tag: 1.18-alpine

- go/test:
name: test-go-1.21
gotestsum-format: testname
executor:
name: go/golang
tag: 1.19-alpine

- go/test:
name: test-go-1.20
gotestsum-format: testname
executor:
name: go/golang
tag: 1.20-alpine

- lint
- build

Expand Down Expand Up @@ -72,7 +51,7 @@ jobs:
default: false
executor:
name: go/golang
tag: 1.20-alpine
tag: 1.23-alpine
steps:
- go/install: {package: git}
- go/install-ssh
Expand All @@ -99,7 +78,7 @@ jobs:
lint:
executor:
name: go/golang
tag: 1.20-alpine
tag: 1.23-alpine
steps:
- checkout
- run: go mod download
Expand Down

0 comments on commit 5483289

Please sign in to comment.