delve/.travis.yml
Derek Parker f1e66f075f Add function call support for OSX
Implements missing functionality in gdbserial to enable function calls
on OSX.
2018-08-30 15:48:10 -07:00

20 lines
254 B
YAML

language: go
sudo: required
os:
- linux
- osx
go:
- tip
- 1.11.x
- 1.10.x
- 1.9.x
matrix:
allow_failures:
- go: tip
before_install:
- if [ $TRAVIS_OS_NAME = "linux" ]; then sudo apt-get -qq update; sudo apt-get install -y dwz; fi