delve/.travis.yml
Alessandro Arzilli 223eb4cb5f travis: bump continuous integration to 1.13 (#1693)
Bump continuous integration to include Go 1.13, drop 1.10 from
compatiblity file.
2019-09-15 11:37:07 -07:00

22 lines
326 B
YAML

language: go
sudo: required
os:
- linux
- osx
go:
- tip
- 1.13.x
- 1.12.x
- 1.11.x
matrix:
allow_failures:
- go: tip
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