File tree 2 files changed +17
-12
lines changed
2 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 6
6
build :
7
7
docker :
8
8
# specify the version
9
- - image : circleci/golang:1.15.6-buster
10
-
11
- # Specify service dependencies here if necessary
12
- # CircleCI maintains a library of pre-built images
13
- # documented at https://circleci.com/docs/2.0/circleci-images/
14
- # - image: circleci/postgres:9.4
9
+ - image : cimg/go:1.18.1
15
10
16
11
# ### TEMPLATE_NOTE: go expects specific checkout path representing url
17
12
# ### expecting it in the form of
18
13
# ### /go/src/github.com/circleci/go-tool
19
14
# ### /go/src/bitbucket.org/circleci/go-tool
20
- working_directory : /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}}
21
15
steps :
22
16
- checkout
23
17
Original file line number Diff line number Diff line change @@ -8,21 +8,32 @@ builds:
8
8
- linux
9
9
- windows
10
10
- darwin
11
+ - freebsd
12
+ - netbsd
13
+ - openbsd
11
14
goarch :
12
15
- 386
13
16
- amd64
14
17
- arm64
18
+ goarm :
19
+ - 6
20
+ - 7
15
21
ignore :
16
22
- goos : darwin
17
23
goarch : 386
18
- - goos : windows
19
- goarch : arm64
24
+ # - goos: windows
25
+ # goarch: arm64
20
26
archives :
21
- - files :
22
- - mqttcli_*
27
+ - format : binary
28
+ name_template : ' {{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
29
+ files :
30
+ - mqttcli_*
31
+ format_overrides :
32
+ - goos : windows
33
+ format : zip
23
34
changelog :
24
35
sort : asc
25
36
filters :
26
37
exclude :
27
38
- ' ^docs:'
28
- - ' ^test:'
39
+ - ' ^test:'
You can’t perform that action at this time.
0 commit comments