From 5cdfe9c7ae8f9dfa895fcb488f22ec5f2b7badbf Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Fri, 17 Feb 2017 09:40:14 +0000 Subject: [PATCH] Updae to go1.8 --- .travis.yml | 3 ++- Makefile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a2cb0e6f7..0c0ec6cf5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ go: - 1.5.4 - 1.6.4 - 1.7.4 +- 1.8 install: - git fetch --unshallow --tags - make vars @@ -23,5 +24,5 @@ deploy: script: make travis_beta on: branch: master - go: 1.7.4 + go: 1.8 condition: "`uname` == 'Linux'" diff --git a/Makefile b/Makefile index 073ac5504..315478a9b 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ LAST_TAG := $(shell git describe --tags --abbrev=0) NEW_TAG := $(shell echo $(LAST_TAG) | perl -lpe 's/v//; $$_ += 0.01; $$_ = sprintf("v%.2f", $$_)') GO_VERSION := $(shell go version) GO_FILES := $(shell go list ./... | grep -v /vendor/ ) -GO_LATEST := $(findstring go1.7,$(GO_VERSION)) +GO_LATEST := $(findstring go1.8,$(GO_VERSION)) BETA_URL := http://beta.rclone.org/$(TAG)/ # Only needed for Go 1.5 export GO15VENDOREXPERIMENT=1