From 8c684f91a338e861ef759c757b0c83816a55c339 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Mon, 11 May 2015 21:10:36 +0200 Subject: [PATCH] travis/Makefile: output debug information --- .travis.yml | 5 +++++ Makefile | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/.travis.yml b/.travis.yml index a7ea998ff..672e08ec1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,11 @@ install: - go get github.com/mattn/goveralls - go get github.com/mitchellh/gox - gox -build-toolchain -os "$GOX_OS" + - go version + - go env + - make env + - make goenv + - make list script: - make restic diff --git a/Makefile b/Makefile index 7b8bfa24c..f3e36ad70 100644 --- a/Makefile +++ b/Makefile @@ -60,3 +60,10 @@ all.cov: .gopath env: @echo export GOPATH=\"$(GOPATH)\" + +goenv: + go env + +list: .gopath + cd $(BASEPATH) && \ + go list ./...