travis/Makefile: output debug information
This commit is contained in:
parent
aebfaec9c7
commit
8c684f91a3
2 changed files with 12 additions and 0 deletions
|
@ -21,6 +21,11 @@ install:
|
||||||
- go get github.com/mattn/goveralls
|
- go get github.com/mattn/goveralls
|
||||||
- go get github.com/mitchellh/gox
|
- go get github.com/mitchellh/gox
|
||||||
- gox -build-toolchain -os "$GOX_OS"
|
- gox -build-toolchain -os "$GOX_OS"
|
||||||
|
- go version
|
||||||
|
- go env
|
||||||
|
- make env
|
||||||
|
- make goenv
|
||||||
|
- make list
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- make restic
|
- make restic
|
||||||
|
|
7
Makefile
7
Makefile
|
@ -60,3 +60,10 @@ all.cov: .gopath
|
||||||
|
|
||||||
env:
|
env:
|
||||||
@echo export GOPATH=\"$(GOPATH)\"
|
@echo export GOPATH=\"$(GOPATH)\"
|
||||||
|
|
||||||
|
goenv:
|
||||||
|
go env
|
||||||
|
|
||||||
|
list: .gopath
|
||||||
|
cd $(BASEPATH) && \
|
||||||
|
go list ./...
|
||||||
|
|
Loading…
Reference in a new issue