deno/.travis.yml

36 lines
838 B
YAML
Raw Normal View History

2018-05-14 07:06:09 +00:00
language: go
go:
- 1.9.2
2018-05-22 19:25:16 +00:00
before_cache:
- ccache -s
2018-05-23 17:38:43 +00:00
cache:
directories:
- $HOME/.ccache
2018-05-23 18:29:14 +00:00
- $PROTOBUF_ROOT
env:
global:
- USE_CCACHE=1
- PROTOBUF_ROOT=$HOME/protobuf
before_install: |
if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
2018-05-24 16:03:44 +00:00
# protoc
2018-05-24 17:47:05 +00:00
if [ -d $PROTOBUF_ROOT ]; then
mkdir -p $PROTOBUF_ROOT
pushd $PROTOBUF_ROOT
wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip
unzip protoc-3.1.0-linux-x86_64.zip
popd
export PATH=$PROTOBUF_ROOT/bin:$PATH
fi
2018-05-23 18:29:14 +00:00
fi
2018-05-14 07:06:09 +00:00
install:
2018-05-23 17:38:43 +00:00
- mkdir -p $HOME/.ccache
- export PATH=/usr/lib/ccache:$PATH
2018-05-22 15:39:37 +00:00
- go get -u github.com/jteeuwen/go-bindata/...
2018-05-15 01:52:43 +00:00
- go get -d github.com/ry/v8worker2
2018-05-18 16:32:37 +00:00
- (cd $GOPATH/src/github.com/ry/v8worker2 && ./tools/build.py)
2018-05-14 07:06:09 +00:00
script:
2018-05-24 17:47:05 +00:00
- yarn lint-version
2018-05-14 07:06:09 +00:00
- make lint
2018-05-22 15:39:37 +00:00
- make test