Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to go 1.14 #26

Merged
merged 1 commit into from
Mar 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2

golang-docker-base-image: &golang-docker-base-image
docker:
- image: circleci/golang:1.12.7
- image: cimg/go:1.14
environment:
GO111MODULE: "on"
CGO_ENABLED: 0
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.11.4-alpine3.8 as builder
FROM golang:1.14.0-alpine3.11 as builder

WORKDIR /build
COPY . /build

RUN CGO_ENABLED=0 GOOS=linux GO111MODULE=on go build -mod=vendor


FROM alpine:latest
FROM gcr.io/distroless/base

WORKDIR /cruise/paas/bin
COPY --from=builder /build/isopod .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ hermetic, and extensible solution to configuration management in Kubernetes.

```shell
$ go version
go version go1.11 darwin/amd64
go version go1.14 darwin/amd64
$ GO111MODULE=on go build
```

Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module github.com/cruise-automation/isopod

go 1.14

require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/DataDog/datadog-go v0.0.0-20180822151419-281ae9f2d895 // indirect
Expand Down
61 changes: 0 additions & 61 deletions vendor/golang.org/x/sys/unix/mkasm_darwin.go

This file was deleted.

106 changes: 0 additions & 106 deletions vendor/golang.org/x/sys/unix/mkpost.go

This file was deleted.

Loading