Merge pull request #424 from tsenart/go1.4

Upgrade to Go 1.4
This commit is contained in:
Björn Rabenstein 2014-12-15 14:30:12 +01:00
commit e2fddd62e9
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View file

@ -27,6 +27,7 @@ core
*-stamp
prometheus
benchmark.txt
.#*
command-line-arguments.test

View file

@ -49,8 +49,8 @@ tag:
$(BUILD_PATH)/cache/$(GOPKG):
$(CURL) -o $@ -L $(GOURL)/$(GOPKG)
benchmark: test
$(GO) test $(GO_TEST_FLAGS) -test.bench='Benchmark' ./...
benchmark: config dependencies tools
$(GO) test $(GO_TEST_FLAGS) -test.run='NONE' -test.bench='.*' -test.benchmem ./... | tee benchmark.txt
clean:
$(MAKE) -C $(BUILD_PATH) clean

View file

@ -26,7 +26,7 @@ MAC_OS_X_VERSION ?= 10.8
BUILD_PATH = $(PWD)/.build
GO_VERSION := 1.3.3
GO_VERSION := 1.4
GOOS = $(subst Darwin,darwin,$(subst Linux,linux,$(OS)))
ifeq ($(GOOS),darwin)