delve/.travis.yml

35 lines
498 B
YAML
Raw Normal View History

2015-08-03 14:34:39 +00:00
language: go
sudo: required
2015-08-03 14:34:39 +00:00
os:
- linux
- osx
arch:
- amd64
- arm64
2015-08-03 14:34:39 +00:00
go:
- tip
- 1.13.x
- 1.12.x
- 1.11.x
2015-12-15 23:28:40 +00:00
matrix:
allow_failures:
- go: tip
exclude:
- os: osx
arch: arm64
- os: linux
go: 1.11.x
arch: arm64
- os: linux
go: 1.12.x
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