Merge pull request #6510 from hashicorp/r-golang-1.12.12

Use golang 1.12.12
This commit is contained in:
Mahmood Ali 2019-10-18 10:52:28 -04:00 committed by GitHub
commit 2e56eaf1b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 10 deletions

View File

@ -78,7 +78,7 @@ executors:
go: go:
working_directory: /go/src/github.com/hashicorp/nomad working_directory: /go/src/github.com/hashicorp/nomad
docker: docker:
- image: circleci/golang:1.12.10 - image: golang:1.12.12
go-machine: go-machine:
working_directory: ~/go/src/github.com/hashicorp/nomad working_directory: ~/go/src/github.com/hashicorp/nomad
machine: machine:
@ -109,8 +109,8 @@ jobs:
GOPATH: /go GOPATH: /go
steps: steps:
- checkout - checkout
- run: apt-get update; apt-get install -y shellcheck sudo unzip
- install-protoc - install-protoc
- run: sudo apt-get update && sudo apt-get install shellcheck
- run: make deps lint-deps - run: make deps lint-deps
- run: make check - run: make check
- run: make checkscripts - run: make checkscripts
@ -135,6 +135,7 @@ jobs:
GOTESTARCH: "<< parameters.goarch >>" GOTESTARCH: "<< parameters.goarch >>"
steps: steps:
- checkout - checkout
- run: apt-get update; apt-get install -y shellcheck sudo unzip
- run: make deps - run: make deps
- install-protoc - install-protoc
- install-consul - install-consul
@ -152,8 +153,20 @@ jobs:
GOPATH: /go GOPATH: /go
steps: steps:
- checkout - checkout
- run: make deps - run: apt-get update; apt-get install -y sudo unzip
- run: make e2e-test # e2e tests require privileged mount/umount permissions when running as root
# TODO: switch to using machine executor and run as root to test e2e path
- run:
name: prepare non-root user
command: |
groupadd --gid 3434 circleci
useradd --uid 3434 --gid circleci --shell /bin/bash --create-home circleci
echo 'circleci ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-circleci
echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep
chown -R circleci:circleci /go
- run: sudo -E -H -u circleci PATH=${PATH} make deps
- run: sudo -E -H -u circleci PATH=${PATH} make e2e-test
test-website: test-website:
executor: go-machine-recent executor: go-machine-recent
@ -271,7 +284,7 @@ commands:
parameters: parameters:
version: version:
type: string type: string
default: "1.12.10" default: "1.12.12"
steps: steps:
- run: - run:
name: install golang << parameters.version >> name: install golang << parameters.version >>

View File

@ -140,7 +140,7 @@ Who Uses Nomad
Contributing to 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.10+ is *required*). If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.12+ is *required*).
See the [`contributing`](contributing/) directory for more developer documentation. See the [`contributing`](contributing/) directory for more developer documentation.

View File

@ -23,10 +23,10 @@ install:
cd %APPVEYOR_BUILD_FOLDER% cd %APPVEYOR_BUILD_FOLDER%
rmdir /Q/S C:\go rmdir /Q/S C:\go
# install go 1.12.10 to match version used for cutting a release # install go 1.12.12 to match version used for cutting a release
- cmd: | - cmd: |
mkdir c:\go mkdir c:\go
appveyor DownloadFile "https://dl.google.com/go/go1.12.10.windows-amd64.zip" -FileName "%TEMP%\\go.zip" appveyor DownloadFile "https://dl.google.com/go/go1.12.12.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
- ps: Expand-Archive $Env:TEMP\go.zip -DestinationPath C:\ - ps: Expand-Archive $Env:TEMP\go.zip -DestinationPath C:\

View File

@ -56,7 +56,7 @@ REPO_PATH="${TMP_WORKSPACE}/gopath/src/github.com/hashicorp/nomad"
mkdir -p "${TMP_WORKSPACE}/tmp" mkdir -p "${TMP_WORKSPACE}/tmp"
install_go() { install_go() {
local go_version="1.12.10" local go_version="1.12.12"
local download= local download=
download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz" download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
function install_go() { function install_go() {
local go_version=1.12.10 local go_version=1.12.12
local download= local download=
download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz" download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"