Skip to content

Commit 87da667

Browse files
committed
ci/circleci: update executor to golang/buster
1 parent a4f05ef commit 87da667

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

.circleci/config.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,14 @@ orbs:
44
golang: cci-orb/golang@volatile
55
codecov: codecov/codecov@volatile
66

7-
defaults: &defaults
8-
working_directory: /go/src/github.com/go-language-server/jsonrpc2
9-
executor: golang/stretch
10-
environment:
11-
GO111MODULE: "on"
12-
GOPROXY: "https://proxy.golang.org"
13-
GOSUMDB: "sum.golang.org"
14-
157
jobs:
168
test:
17-
<<: *defaults
9+
executor:
10+
name: golang/buster
11+
tag: "1.14-buster"
12+
working_directory: /go/src/github.com/go-language-server/jsonrpc2
13+
environment:
14+
GO111MODULE: "on"
1815
parallelism: 2
1916
steps:
2017
- checkout
@@ -34,7 +31,12 @@ jobs:
3431
path: /tmp/ci/test-results
3532

3633
lint:
37-
<<: *defaults
34+
executor:
35+
name: golang/buster
36+
tag: "1.14-buster"
37+
working_directory: /go/src/github.com/go-language-server/jsonrpc2
38+
environment:
39+
GO111MODULE: "on"
3840
parallelism: 2
3941
steps:
4042
- checkout

0 commit comments

Comments
 (0)