mirror of https://github.com/go-python/gopy.git
29 lines
432 B
YAML
29 lines
432 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.5.x
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- master
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: master
|
|
|
|
sudo: required
|
|
|
|
before_install:
|
|
- sudo apt-get install libffi-dev
|
|
- pip install cffi
|
|
- export PATH=$HOME/gopath/bin:$PATH
|
|
# temporary workaround for go-python/gopy#83
|
|
- export GODEBUG=cgocheck=0
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- binet@cern.ch
|
|
on_success: change
|
|
on_failure: always
|