ebiten/.travis.yml

28 lines
730 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:
2016-01-19 14:32:27 +01:00
- 1.5
2014-12-28 14:25:19 +01:00
before_install:
2015-01-13 16:18:36 +01:00
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
2014-12-28 14:25:19 +01:00
- sudo apt-get update -qq
- sudo apt-get install -qq libglew-dev libglfw3-dev libopenal-dev libalut-dev libxxf86vm-dev # libglew-dev is required by node-gl.
2015-01-13 16:18:36 +01:00
- export NODE_PATH=$(npm config get prefix)/lib/node_modules
- npm install --global gl
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 test -v github.com/hajimehoshi/ebiten github.com/hajimehoshi/ebiten/internal/graphics
- gopherjs build -v github.com/hajimehoshi/ebiten/example/blocks
2014-12-28 13:11:34 +01:00
notifications:
email:
recipients:
- hajimehoshi@gmail.com