From 08af7bbf906a44b8dedd3c0ebfae347d9deb1183 Mon Sep 17 00:00:00 2001 From: Simon Pasquier Date: Mon, 4 Mar 2019 20:44:40 +0100 Subject: [PATCH] Add Go 1.12 to Travis CI (#538) Also update to the latest version of Makefile.common. Signed-off-by: Simon Pasquier --- .travis.yml | 3 +-- Makefile.common | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index faed5148e1..c146e026b6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,3 @@ -# sudo is enabled because it provides more memory which was needed to run go test -race -sudo: required dist: trusty language: go os: @@ -10,6 +8,7 @@ os: go: - 1.10.x - 1.11.x + - 1.12.x go_import_path: github.com/prometheus/tsdb diff --git a/Makefile.common b/Makefile.common index 7e86f4543a..7105cff023 100644 --- a/Makefile.common +++ b/Makefile.common @@ -70,7 +70,7 @@ else GO_BUILD_PLATFORM ?= $(GOHOSTOS)-$(GOHOSTARCH) endif -PROMU_VERSION ?= 0.2.0 +PROMU_VERSION ?= 0.3.0 PROMU_URL := https://github.com/prometheus/promu/releases/download/v$(PROMU_VERSION)/promu-$(PROMU_VERSION).$(GO_BUILD_PLATFORM).tar.gz STATICCHECK_VERSION ?= 2019.1 STATICCHECK_URL := https://github.com/dominikh/go-tools/releases/download/$(STATICCHECK_VERSION)/staticcheck_$(GOHOSTOS)_$(GOHOSTARCH)