upgrade nomad to 1.10.2

This commit is contained in:
Chelsea Holland Komlo
2018-05-21 17:19:16 -04:00
parent 69f74996b0
commit f935b4fb46
3 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ services:
language: go
go:
- "1.10.x"
- "1.10.2"
addons:
chrome: stable

View File

@@ -65,7 +65,7 @@ Developing Nomad
If you wish to work on Nomad itself or any of its built-in systems,
you will first need [Go](https://www.golang.org) installed on your
machine (version 1.10+ is *required*).
machine (version 1.10.2+ is *required*).
**Developing with Vagrant**
There is an included Vagrantfile that can help bootstrap the process. The

View File

@@ -1,9 +1,9 @@
#!/usr/bin/env bash
function install_go() {
local go_version=1.10
local go_version=1.10.2
local download=
download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"
if [ -d /usr/local/go ] ; then