mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
27 lines
701 B
YAML
27 lines
701 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.4
|
|
|
|
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
|
|
|
|
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
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- hajimehoshi@gmail.com
|