Skip to content

Commit

Permalink
travis: see if tip is now passing after #44487 fix
Browse files Browse the repository at this point in the history
golang/go#44487 was likely causing tip to fail with a panic for the go-fuzz travis tests, perhaps due to the `// +build` in slides/crash.go and elsewhere.

Also update the tested versions of Go.
  • Loading branch information
thepudds authored May 28, 2021
1 parent fca3906 commit 1fcfec1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

language: go

# Test Go 1.11 and 1.12 across linux, osx, windows.
# Test Go 1.16 and 1.15 across linux, osx, windows.
# Test Go tip on linux, osx (and explicitly set GO111MODULE=auto for tip, given default might change).
matrix:
include:
Expand All @@ -17,22 +17,22 @@ matrix:
- os: linux
go: tip
- os: linux
go: "1.13.x"
go: "1.16.x"
- os: linux
go: "1.12.x"
go: "1.15.x"
- os: osx
go: tip
env: SET_GO111MODULE=1
- os: osx
go: tip
- os: osx
go: "1.13.x"
go: "1.16.x"
- os: osx
go: "1.12.x"
go: "1.15.x"
- os: windows
go: "1.13.x"
go: "1.16.x"
- os: windows
go: "1.12.x"
go: "1.15.x"

# Install coreutils for the 'timeout(1)' utility on windows and osx.
before_install:
Expand Down

0 comments on commit 1fcfec1

Please sign in to comment.