Skip to content

Commit

Permalink
add go 1.21, make go 1.19 minimum version (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman authored Aug 24, 2023
1 parent e42b95a commit e578b6f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
15 changes: 11 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ commands:
jobs:

go120:
go121:
docker:
- image: cimg/go:1.20
- image: cimg/go:1.21
steps:
- run:
name: "Install tools"
Expand Down Expand Up @@ -76,6 +76,13 @@ jobs:
name: "Test (PPC64 emulation)"
command: qemu-ppc64-static uint256.test.ppc64 -test.v

go120:
docker:
- image: cimg/go:1.20
steps:
- checkout
- test

go119:
docker:
- image: cimg/go:1.19
Expand All @@ -85,13 +92,13 @@ jobs:




workflows:
version: 2
uint256:
jobs:
- go121
- go120
- go119
- bigendian:
requires:
- go120
- go121
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/holiman/uint256

go 1.18
go 1.19

0 comments on commit e578b6f

Please sign in to comment.