33 lines
836 B
YAML
33 lines
836 B
YAML
language: go
|
|
sudo: true
|
|
go_import_path: gobot.io/x/gobot
|
|
go:
|
|
- 1.6
|
|
- 1.7
|
|
- 1.8rc3
|
|
- tip
|
|
matrix:
|
|
allow_failures:
|
|
- go: 1.6
|
|
- go: tip
|
|
before_install:
|
|
- sudo add-apt-repository -y ppa:kubuntu-ppa/backports
|
|
- sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots
|
|
- sudo apt-get update
|
|
- sudo apt-get install --force-yes libcv-dev libcvaux-dev libhighgui-dev libopencv-dev libsdl2-dev libsdl2-image-dev libsdl2 libusb-dev xvfb unzip libgtk2.0-0
|
|
- cd $HOME/gopath/src/gobot.io/x/gobot
|
|
- go get github.com/axw/gocov/gocov
|
|
- go get github.com/mattn/goveralls
|
|
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
|
|
install:
|
|
- make deps
|
|
before_script:
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
script:
|
|
- ./ci/travis.sh
|
|
branches:
|
|
except:
|
|
- gobot.io
|
|
- /^gobot-.*$/
|