
For some reason the version of dwz in Travis-CI now fails to run on Go binaries. Ignore the particular error.
22 lines
326 B
YAML
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
|
|
|