andlabs-ui/.travis.yml

22 lines
657 B
YAML
Raw Normal View History

2014-03-05 00:02:44 -06:00
language: go
go:
- tip
env:
- GOOS=linux GOARCH=386
- GOOS=linux GOARCH=amd64
- GOOS=windows GOARCH=386
- GOOS=windows GOARCH=amd64
2014-03-05 01:00:51 -06:00
before_install:
- go tool dist install cmd/8a
- go tool dist install cmd/8c
- go tool dist install cmd/8g
- go tool dist install cmd/8l
- GOOS=linux GOARCH=386 CGO_ENABLED=1 CFLAGS=-m32 LDFLAGS=-m32 { go tool dist install pkg/runtime && go install std; }
- GOOS=windows GOARCH=386 { go tool dist install pkg/runtime && go install std; }
- GOOS=windows GOARCH=amd64 { go tool dist install pkg/runtime && go install std; }
2014-03-05 01:00:51 -06:00
- sudo apt-get update -qq
- sudo apt-get install -qq libgtk-3-dev libgtk-3-0:i386