chore: tidy go.mod, add arm64 and workflows update (#1461)

* chore: tidy go.mod

* chore(gh): add arm64 and workflows update

* chore: disable staticcheck SA1019 for xerrors.Errorf

* chore: fix github.com/boltdb/bolt switch to github.com/etcd-io/bbolt? #1457
This commit is contained in:
MaineK00n
2022-06-08 21:10:07 +00:00
committed by GitHub
parent ec6e90acd3
commit 2477f9a8f8
11 changed files with 85 additions and 54 deletions

View File

@@ -6,11 +6,29 @@ release:
owner: future-architect
name: vuls
builds:
- id: vuls
- id: vuls-amd64
goos:
- linux
goarch:
- amd64
env:
- CGO_ENABLED=1
- CC=x86_64-linux-gnu-gcc
main: ./cmd/vuls/main.go
flags:
- -a
ldflags:
- -s -w -X github.com/future-architect/vuls/config.Version={{.Version}} -X github.com/future-architect/vuls/config.Revision={{.Commit}}-{{ .CommitDate }}
binary: vuls
- id: vuls-arm64
goos:
- linux
goarch:
- arm64
env:
- CGO_ENABLED=1
- CC=aarch64-linux-gnu-gcc
main: ./cmd/vuls/main.go
flags:
- -a
@@ -74,7 +92,8 @@ archives:
- id: vuls
name_template: '{{ .Binary }}_{{.Version}}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
builds:
- vuls
- vuls-amd64
- vuls-arm64
format: tar.gz
files:
- LICENSE