2018-05-14 03:06:09 -04:00
|
|
|
language: go
|
|
|
|
go:
|
|
|
|
- 1.9.2
|
2018-05-22 15:25:16 -04:00
|
|
|
before_cache:
|
|
|
|
- ccache -s
|
2018-05-23 13:38:43 -04:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.ccache
|
2018-05-14 03:06:09 -04:00
|
|
|
install:
|
2018-05-23 13:38:43 -04:00
|
|
|
- mkdir -p $HOME/.ccache
|
|
|
|
- export PATH=/usr/lib/ccache:$PATH
|
2018-05-22 20:09:37 +04:30
|
|
|
- sudo apt-get install protobuf-compiler
|
|
|
|
- go get -u github.com/jteeuwen/go-bindata/...
|
2018-05-14 21:52:43 -04:00
|
|
|
- go get -d github.com/ry/v8worker2
|
2018-05-18 12:32:37 -04:00
|
|
|
- (cd $GOPATH/src/github.com/ry/v8worker2 && ./tools/build.py)
|
2018-05-14 03:06:09 -04:00
|
|
|
script:
|
|
|
|
- make lint
|
2018-05-22 20:09:37 +04:30
|
|
|
- make test
|