protoc-gen-gotemplate/.travis.yml

15 lines
423 B
YAML
Raw Normal View History

2016-12-12 19:23:47 +01:00
language: go
go: 1.7.x
2016-12-13 17:37:26 +01:00
install:
2017-03-16 16:16:45 +01:00
- mkdir -p $GOPATH/bin && curl https://glide.sh/get | sh
2016-12-13 17:37:26 +01:00
- wget https://raw.githubusercontent.com/grpc-ecosystem/grpc-gateway/master/.travis/install-protoc.sh && chmod +x install-protoc.sh && ./install-protoc.sh 3.1.0
2017-03-16 16:16:45 +01:00
- go get -u github.com/golang/protobuf/protoc-gen-go
2016-12-12 19:23:47 +01:00
script:
- make install
- make test
cache:
directories:
- $HOME/local
env:
global:
- "PATH=$PATH:$HOME/local/bin"