Skip to content

Commit

Permalink
Bump Go to 1.14.12
Browse files Browse the repository at this point in the history
Gets the 1.4 fabric stream back on a support release and
picks up improvements and bug fixes in the latest Go releases.

Signed-off-by: Brett Logan <[email protected]>
  • Loading branch information
Brett Logan committed Nov 17, 2020
1 parent 2dbf8d6 commit 7004000
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
BASE_VERSION = 1.4.10
PREV_VERSION = 1.4.9
CHAINTOOL_RELEASE=1.1.3
BASEIMAGE_RELEASE=0.4.21
BASEIMAGE_RELEASE=0.4.22

# Allow to build as a submodule setting the main project to
# the PROJECT_NAME env variable, for example,
Expand Down
2 changes: 1 addition & 1 deletion ci/azure-pipelines-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pr: none
variables:
GOPATH: $(Agent.BuildDirectory)/go
PATH: $(Agent.BuildDirectory)/go/bin:/usr/local/go/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin
GOVER: 1.13.12
GOVER: 1.14.12

jobs:
- job: UnitTests
Expand Down
2 changes: 1 addition & 1 deletion ci/azure-pipelines-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ variables:
- name: GOPATH
value: $(Agent.BuildDirectory)/go
- name: GOVER
value: 1.13.12
value: 1.14.12

stages:
- stage: BuildBinaries
Expand Down
2 changes: 1 addition & 1 deletion ci/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pr:
variables:
GOPATH: $(Agent.BuildDirectory)/go
PATH: $(Agent.BuildDirectory)/go/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin
GOVER: 1.13.12
GOVER: 1.14.12

jobs:
- job: VerifyBuild
Expand Down
2 changes: 1 addition & 1 deletion devenv/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ docker run --rm busybox echo All good
# ----------------------------------------------------------------
# Install Golang
# ----------------------------------------------------------------
GO_VER=1.13.12
GO_VER=1.14.12
GO_URL=https://storage.googleapis.com/golang/go${GO_VER}.linux-amd64.tar.gz

# Set Go environment variables needed by other scripts
Expand Down
2 changes: 1 addition & 1 deletion images/testenv/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0
#
FROM golang:1.13.12-alpine as builder
FROM golang:1.14.12-alpine as builder

RUN apk add --no-cache \
alpine-sdk \
Expand Down
2 changes: 1 addition & 1 deletion integration/e2e/health_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ var _ = Describe("Health", func() {
statusCode, status = DoHealthCheck(authClient, healthURL)
Expect(status.Status).To(Equal("Service Unavailable"))
Expect(status.FailedChecks[0].Component).To(Equal("couchdb"))
Expect(status.FailedChecks[0].Reason).Should((HavePrefix(fmt.Sprintf("failed to connect to couch db [http error calling couchdb: Head http://%s: dial tcp %s: ", couchAddr, couchAddr))))
Expect(status.FailedChecks[0].Reason).Should(HavePrefix(fmt.Sprintf(`failed to connect to couch db [http error calling couchdb: Head "http://%s": dial tcp %s: `, couchAddr, couchAddr)))
})
})
})
Expand Down

0 comments on commit 7004000

Please sign in to comment.