Skip to content

Commit

Permalink
ci: enable go 1.24 (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman authored Feb 19, 2025
1 parent 0593a0b commit b2bde2d
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ commands:
jobs:

go123:
go124:
docker:
- image: cimg/go:1.23
- image: cimg/go:1.24
steps:
- run:
name: "Install tools"
command: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.61.0
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.64.5
- checkout
- run:
name: "Lint"
Expand Down Expand Up @@ -82,6 +82,13 @@ jobs:
name: "Test (PPC64 emulation)"
command: qemu-ppc64-static uint256.test.ppc64 -test.v

go123:
docker:
- image: cimg/go:1.23
steps:
- checkout
- test

go122:
docker:
- image: cimg/go:1.22
Expand Down Expand Up @@ -120,9 +127,10 @@ workflows:
- go120
- go121
- go122
- go123:
- go123
- go124:
requires:
- go122
- go123
- bigendian:
requires:
- go123
- go124

0 comments on commit b2bde2d

Please sign in to comment.