Skip to content

Commit

Permalink
upgrade go to 1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
emmansun authored Nov 7, 2023
1 parent c542b38 commit f700e2a
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
goVer: ['1.16', '1.18', '1.20']
goVer: ['1.18', '1.20']
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
1 change: 0 additions & 1 deletion bn256/gfp_amd64.s
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build amd64 && !purego
// +build amd64,!purego

#define storeBlock(a0,a1,a2,a3, r) \
MOVQ a0, 0+r \
Expand Down
1 change: 0 additions & 1 deletion bn256/gfp_arm64.s
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build arm64 && !purego
// +build arm64,!purego

#define storeBlock(a0,a1,a2,a3, r) \
MOVD a0, 0+r \
Expand Down
2 changes: 0 additions & 2 deletions bn256/gfp_decl.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
//go:build (amd64 && !purego) || (arm64 && !purego)
// +build amd64 arm64
// +build !purego

package bn256

Expand Down
2 changes: 0 additions & 2 deletions bn256/gfp_generic.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
//go:build (!amd64 && !arm64) || purego
// +build !amd64 purego
// +build !arm64 purego

package bn256

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/emmansun/sm9

go 1.16
go 1.18

require golang.org/x/sys v0.14.0

0 comments on commit f700e2a

Please sign in to comment.