Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

maint: add go 1.18 to CI #172

Merged
merged 1 commit into from
Mar 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ filters_publish: &filters_publish
matrix_goversions: &matrix_goversions
matrix:
parameters:
goversion: ["14", "15", "16", "17"]
goversion: ["14", "15", "16", "17", "18"]

# Default version of Go to use for Go steps
default_goversion: &default_goversion "17"
default_goversion: &default_goversion "18"

executors:
go:
Expand Down Expand Up @@ -61,13 +61,6 @@ jobs:
steps:
- buildevents/with_job_span:
steps:
- when:
condition:
equal: ["12", "<< parameters.goversion >>" ]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bye!

steps:
- run:
name: Update certs in old CI image
command: sudo apt-get update && sudo apt-get install -y ca-certificates
- checkout
- run: go get -v -t -d ./...
- run: go test -race -v ./...
Expand Down