delve/.travis.yml
Alessandro Arzilli 67b6d4b9c9 travis-ci: fix dwz test problems (#1648)
For some reason the version of dwz in Travis-CI now fails to run on Go
binaries. Ignore the particular error.
2019-07-31 13:09:00 -07:00

22 lines
326 B
YAML

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