delve/.travis.yml
Derek Parker 6319d50e94 *: Add Go 1.14 to test matrix
This also removes Go 1.11 from the test matrix.

Now that 1.14 has been released, as always it should be included in the
test matrix.
2020-03-01 11:13:39 +01:00

29 lines
396 B
YAML

language: go
sudo: required
os:
- linux
- osx
arch:
- amd64
- arm64
go:
- tip
- 1.14.x
- 1.13.x
- 1.12.x
matrix:
allow_failures:
- go: tip
exclude:
- os: osx
arch: arm64
before_install:
- export GOFLAGS=-mod=vendor
- if [ $TRAVIS_OS_NAME = "linux" ]; then sudo apt-get -qq update; sudo apt-get install -y dwz; echo "dwz version $(dwz --version)"; fi