delve/.travis.yml
hengwu0 da2028dcdf test: fix tests on arm64
* remove skip-code of some arm64 tests, which implemented.
* fix errors in testsuits for arm64
2019-11-27 11:07:31 -08:00

29 lines
396 B
YAML

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