Remove dep and use go modules in .travis.yml
This commit is contained in:
parent
3f6b0ce44c
commit
c8d953380e
11
.travis.yml
11
.travis.yml
|
@ -1,22 +1,25 @@
|
||||||
|
os: linux
|
||||||
|
dist: xenial
|
||||||
language: go
|
language: go
|
||||||
|
|
||||||
go:
|
go:
|
||||||
- 1.9.x
|
- 1.9.x
|
||||||
|
- 1.13.x
|
||||||
|
|
||||||
|
go_import_path: "github.com/pterodactyl/wings"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
- docker
|
- docker
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- mkdir -p $GOPATH/bin
|
- mkdir -p $GOPATH/bin
|
||||||
|
|
||||||
# Install used 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 dep
|
- go mod download
|
||||||
- dep ensure
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- make cross-build
|
- make cross-build
|
||||||
|
|
Loading…
Reference in New Issue
Block a user