Use golang to 1.12.10
To get fix for https://github.com/golang/go/issues/34540 .
This commit is contained in:
parent
9703d3de3a
commit
916c6bdda4
|
@ -80,7 +80,7 @@ executors:
|
|||
go:
|
||||
working_directory: /go/src/github.com/hashicorp/nomad
|
||||
docker:
|
||||
- image: circleci/golang:1.12.9
|
||||
- image: circleci/golang:1.12.10
|
||||
go-machine:
|
||||
working_directory: ~/go/src/github.com/hashicorp/nomad
|
||||
machine:
|
||||
|
@ -299,7 +299,7 @@ commands:
|
|||
parameters:
|
||||
version:
|
||||
type: string
|
||||
default: "1.12.9"
|
||||
default: "1.12.10"
|
||||
steps:
|
||||
- run:
|
||||
name: install golang << parameters.version >>
|
||||
|
|
|
@ -140,7 +140,7 @@ Who Uses Nomad
|
|||
Contributing to Nomad
|
||||
--------------------
|
||||
|
||||
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*).
|
||||
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*).
|
||||
|
||||
See the [`contributing`](contributing/) directory for more developer documentation.
|
||||
|
||||
|
|
|
@ -23,10 +23,10 @@ install:
|
|||
cd %APPVEYOR_BUILD_FOLDER%
|
||||
rmdir /Q/S C:\go
|
||||
|
||||
# install go 1.12.9 to match version used for cutting a release
|
||||
# install go 1.12.10 to match version used for cutting a release
|
||||
- cmd: |
|
||||
mkdir c:\go
|
||||
appveyor DownloadFile "https://dl.google.com/go/go1.12.9.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
|
||||
appveyor DownloadFile "https://dl.google.com/go/go1.12.10.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
|
||||
|
||||
- ps: Expand-Archive $Env:TEMP\go.zip -DestinationPath C:\
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ REPO_PATH="${TMP_WORKSPACE}/gopath/src/github.com/hashicorp/nomad"
|
|||
mkdir -p "${TMP_WORKSPACE}/tmp"
|
||||
|
||||
install_go() {
|
||||
local go_version="1.12.9"
|
||||
local go_version="1.12.10"
|
||||
local download=
|
||||
|
||||
download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
function install_go() {
|
||||
local go_version=1.12.9
|
||||
local go_version=1.12.10
|
||||
local download=
|
||||
|
||||
download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"
|
||||
|
|
Loading…
Reference in New Issue