Golang versions: add 1.9.1, drop 1.7
authorGabe Rosenhouse <grosenhouse@pivotal.io>
Wed, 18 Oct 2017 21:51:33 +0000 (14:51 -0700)
committerGabe Rosenhouse <grosenhouse@pivotal.io>
Wed, 18 Oct 2017 21:51:33 +0000 (14:51 -0700)
.travis.yml
Vagrantfile

index 234f882..9c01098 100644 (file)
@@ -3,8 +3,8 @@ sudo: required
 dist: trusty
 
 go:
-  - 1.7.x
   - 1.8.x
+  - 1.9.x
 
 env:
   global:
index 0a25715..3d4796a 100644 (file)
@@ -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.1.linux-amd64.tar.gz | tar -C /usr/local -xz
 
     echo 'export GOPATH=/go; export PATH=/usr/local/go/bin:$GOPATH/bin:$PATH' >> /root/.bashrc
     eval `tail -n1 /root/.bashrc`