
This also removes Go 1.11 from the test matrix. Now that 1.14 has been released, as always it should be included in the test matrix.
29 lines
396 B
YAML
29 lines
396 B
YAML
language: go
|
|
sudo: required
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
arch:
|
|
- amd64
|
|
- arm64
|
|
|
|
go:
|
|
- tip
|
|
- 1.14.x
|
|
- 1.13.x
|
|
- 1.12.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
|
|
|