File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 12
12
13
13
release_linux :
14
14
docker :
15
- - image : circleci/golang
15
+ - image : circleci/golang:1.15
16
16
working_directory : /go/src/github.com/codeclimate/test-reporter
17
17
setup_remote_docker :
18
18
docker_layer_caching : true
27
27
xcode : " 11.3.0"
28
28
steps :
29
29
- checkout
30
- - run : brew install golang
30
+ - run :
31
+ name : Install go
32
+ command : |
33
+ curl -O https://dl.google.com/go/go1.15.darwin-amd64.tar.gz
34
+ tar -xzf go1.15.darwin-amd64.tar.gz
35
+ echo 'export PATH=$PATH:$PWD/go/bin' >> "$BASH_ENV"
31
36
- run :
32
37
name : Setup gopath
33
38
command : |
48
53
steps :
49
54
- checkout
50
55
- run : pip install awscli
51
- - run : brew install golang
56
+ - run :
57
+ name : Install go
58
+ command : |
59
+ curl -O https://dl.google.com/go/go1.15.darwin-amd64.tar.gz
60
+ tar -xzf go1.15.darwin-amd64.tar.gz
61
+ echo 'export PATH=$PATH:$PWD/go/bin' >> "$BASH_ENV"
52
62
- run :
53
63
name : Setup gopath
54
64
command : |
You can’t perform that action at this time.
0 commit comments