Skip to content

Commit

Permalink
Merge pull request #45 from WillAbides/go117
Browse files Browse the repository at this point in the history
test with go 1.17
  • Loading branch information
WillAbides authored Aug 20, 2021
2 parents f310096 + e40dc2e commit 509eb11
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: WillAbides/setup-go-faster@v1
id: setup-go
with:
go-version: '1.15.x'
go-version: '1.17'
- uses: actions/cache@v2
with:
path: |
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: WillAbides/setup-go-faster@v1
id: setup-go
with:
go-version: '1.15.x'
go-version: '1.17'
- uses: WillAbides/[email protected]
id: benchdiff
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: WillAbides/setup-go-faster@v1
id: setup-go
with:
go-version: '1.16.x'
go-version: '1.17'
- uses: actions/cache@v2
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ bin/gofumpt: bin/gobin
GOBIN=${CURDIR}/bin \
bin/gobin mvdan.cc/gofumpt@$(GOFUMPT_REV)

GO_FUZZ_REV := 6a8e9d1f2415cf672ddbe864c2d4092287b33a21
GO_FUZZ_REV := b1f3d6f4ef4e0fab65fa66f9191e6b115ad34f31
bin/go-fuzz-build: bin/gobin
GOBIN=${CURDIR}/bin \
go install github.com/dvyukov/go-fuzz/go-fuzz-build@$(GO_FUZZ_REV)
Expand Down
2 changes: 1 addition & 1 deletion script/fuzz
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mkdir -p tmp
# make a list of all dependencies outside of this repo so they won't be instrumented by go-fuzz
preservers="$(go list -f '{{ join .Deps "\n" }}' | grep -v rjson | tr '\n' ',')"

go get github.com/dvyukov/go-fuzz@6a8e9d1f241
go get github.com/dvyukov/go-fuzz@b1f3d6f4ef4e0fab65fa66f9191e6b115ad34f31
trap "go mod tidy" EXIT

go-fuzz-build -o tmp/fuzz-rjson.zip -preserve "$preservers"
Expand Down
2 changes: 1 addition & 1 deletion script/fuzz-timeout
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ PATH="$(pwd)/bin:$PATH"

mkdir -p tmp

go get github.com/dvyukov/go-fuzz@6a8e9d1f241
go get github.com/dvyukov/go-fuzz@b1f3d6f4ef4e0fab65fa66f9191e6b115ad34f31
trap "go mod tidy" EXIT

go-fuzz-build -o tmp/fuzz-rjson.zip
Expand Down

0 comments on commit 509eb11

Please sign in to comment.