ebiten/.travis.yml

27 lines
701 B
YAML
Raw Normal View History

2014-12-28 13:11:34 +01:00
language: go
2014-12-28 14:25:19 +01:00
go:
- 1.4
2014-12-28 14:25:19 +01:00
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sudo add-apt-repository 'deb http://us.archive.ubuntu.com/ubuntu/ utopic main restricted universe multiverse'
- sudo add-apt-repository 'deb http://us.archive.ubuntu.com/ubuntu/ utopic-updates main restricted universe multiverse'
- sudo apt-get update -qq
- sudo apt-get install -qq libglew-dev libglfw3-dev
2014-12-28 13:11:34 +01:00
install:
- go get -t -v ./...
- go get github.com/gopherjs/gopherjs
- go get github.com/gopherjs/webgl
script:
- go test -v ./...
- gopherjs build -v github.com/hajimehoshi/ebiten/example/blocks
2014-12-28 13:11:34 +01:00
notifications:
email:
recipients:
- hajimehoshi@gmail.com