use go dep with travis

This commit is contained in:
Jakob Schrettenbrunner 2018-02-20 23:43:33 +01:00
parent 5836c320ff
commit d2aa896a1c

View File

@ -6,23 +6,17 @@ go:
services: services:
- docker - docker
addons:
apt:
sources:
- sourceline: 'ppa:masterminds/glide'
packages:
- glide
install: install:
- mkdir -p $GOPATH/bin - mkdir -p $GOPATH/bin
# Install other tools # Install used tools
- go get github.com/golang/dep/cmd/dep
- go get github.com/mitchellh/gox - go get github.com/mitchellh/gox
- go get github.com/haya14busa/goverage - go get github.com/haya14busa/goverage
- go get github.com/schrej/godacov - go get github.com/schrej/godacov
# Install project dependencies with glide # Install project dependencies with dep
- glide install - dep ensure
script: script:
- make cross-build - make cross-build