Skip to content
This repository was archived by the owner on May 22, 2024. It is now read-only.

Commit ea6a40e

Browse files
committed
Bump Go 1.15
Currently DC/OS CLI keeps backward compatibility for macOS 10.10 Yosemite (2014) after updating Go version we will drop it and support only macOS 10.12 Sierra or later.
1 parent 903f678 commit ea6a40e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Diff for: .appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
install:
22
- SET PATH=C:\msys64\mingw64\bin;c:\gopath\bin;%PATH%
3-
- go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.27.0
3+
- curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b "c:\gopath\bin" v1.30.0
44

55
build: off
66

@@ -10,9 +10,9 @@ environment:
1010
GOPATH: c:\gopath
1111
NO_DOCKER: 1
1212

13-
stack: go 1.12
13+
stack: go 1.15
14+
image: Visual Studio 2019
1415

1516
test_script:
16-
- SET GO111MODULE=on
1717
- mingw32-make windows
1818
- mingw32-make test

Diff for: .travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ os:
44

55
language: go
66

7-
go: "1.12.x"
7+
go: "1.15.x"
88

99
go_import_path: github.com/dcos/dcos-cli
1010

1111
env:
1212
- NO_DOCKER=1 GO111MODULE=on
1313

1414
before_install:
15-
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.21.0
15+
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.30.0
1616

1717
script:
1818
- make

Diff for: Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM golang:1.12
1+
FROM golang:1.15
22

33
RUN go get -u \
44
golang.org/x/lint/golint \
55
github.com/awalterschulze/goderive \
66
github.com/br-lewis/go-bindata/...
77

8-
RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.21.0
8+
RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.30.0

0 commit comments

Comments
 (0)