fix(ci): add zlib for cgo
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Unlock Music Dev 2022-12-05 01:00:00 +08:00
parent 9241512f2d
commit 743c672c44
Signed by: um-dev
GPG Key ID: 95202E10D3413A1D
2 changed files with 5 additions and 1 deletions

View File

@ -69,7 +69,10 @@ local PipelineBuild(GOOS, GOARCH, RUN_TEST) = {
if RUN_TEST then [{
name: 'go test',
image: 'golang:1.19',
commands: ['go test -v ./...'],
commands: [
'apt-get update && apt-get -y install zlib1g-dev',
'go test -v ./...'
],
}] else []
)
+

View File

@ -7,6 +7,7 @@ steps:
image: alpine/git
name: fetch tags
- commands:
- apt-get update && apt-get -y install zlib1g-dev
- go test -v ./...
image: golang:1.19
name: go test