Skip to content

Commit 053a100

Browse files
author
Mahmood Ali
committed
Use golang to 1.12.10
To get fix for golang/go#34540 .
1 parent a7923c3 commit 053a100

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ executors:
8080
go:
8181
working_directory: /go/src/github.com/hashicorp/nomad
8282
docker:
83-
- image: circleci/golang:1.12.9
83+
- image: circleci/golang:1.12.10
8484
go-machine:
8585
working_directory: ~/go/src/github.com/hashicorp/nomad
8686
machine:
@@ -299,7 +299,7 @@ commands:
299299
parameters:
300300
version:
301301
type: string
302-
default: "1.12.9"
302+
default: "1.12.10"
303303
steps:
304304
- run:
305305
name: install golang << parameters.version >>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Who Uses Nomad
140140
Contributing to Nomad
141141
--------------------
142142

143-
If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.9+ is *required*).
143+
If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.10+ is *required*).
144144

145145
See the [`contributing`](contributing/) directory for more developer documentation.
146146

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ install:
2323
cd %APPVEYOR_BUILD_FOLDER%
2424
rmdir /Q/S C:\go
2525
26-
# install go 1.12.9 to match version used for cutting a release
26+
# install go 1.12.10 to match version used for cutting a release
2727
- cmd: |
2828
mkdir c:\go
29-
appveyor DownloadFile "https://dl.google.com/go/go1.12.9.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
29+
appveyor DownloadFile "https://dl.google.com/go/go1.12.10.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
3030
3131
- ps: Expand-Archive $Env:TEMP\go.zip -DestinationPath C:\
3232

scripts/release/mac-remote-build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ REPO_PATH="${TMP_WORKSPACE}/gopath/src/github.com/hashicorp/nomad"
5656
mkdir -p "${TMP_WORKSPACE}/tmp"
5757
5858
install_go() {
59-
local go_version="1.12.9"
59+
local go_version="1.12.10"
6060
local download=
6161
6262
download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"

scripts/vagrant-linux-priv-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
function install_go() {
4-
local go_version=1.12.9
4+
local go_version=1.12.10
55
local download=
66

77
download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"

0 commit comments

Comments
 (0)