From 9769434a134e18449f180a43378307a5c7269df3 Mon Sep 17 00:00:00 2001 From: Gabe Rosenhouse Date: Tue, 29 Aug 2017 20:15:50 -0700 Subject: [PATCH 1/2] Golang versions: add 1.9, drop 1.7 --- .travis.yml | 2 +- Vagrantfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index be690569..7140ea39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,8 @@ sudo: required dist: trusty go: - - 1.7.x - 1.8.x + - 1.9.x env: global: diff --git a/Vagrantfile b/Vagrantfile index 7c5f8f1b..03b6eb27 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -12,7 +12,7 @@ Vagrant.configure(2) do |config| apt-get update -y || (sleep 40 && apt-get update -y) apt-get install -y git - wget -qO- https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz | tar -C /usr/local -xz + wget -qO- https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz | tar -C /usr/local -xz echo 'export GOPATH=/go' >> /root/.bashrc echo 'export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin' >> /root/.bashrc From 596b44301b6ded1277c33264128f421d33cd907a Mon Sep 17 00:00:00 2001 From: Gabriel Rosenhouse Date: Wed, 11 Oct 2017 21:19:16 +0200 Subject: [PATCH 2/2] Vagrantfile: update to golang 1.9.1 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 03b6eb27..4909e510 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -12,7 +12,7 @@ Vagrant.configure(2) do |config| apt-get update -y || (sleep 40 && apt-get update -y) apt-get install -y git - wget -qO- https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz | tar -C /usr/local -xz + wget -qO- https://storage.googleapis.com/golang/go1.9.1.linux-amd64.tar.gz | tar -C /usr/local -xz echo 'export GOPATH=/go' >> /root/.bashrc echo 'export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin' >> /root/.bashrc