Add git to nocgo build step
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
DataHoarder 2022-10-29 10:38:19 +02:00
parent 65d4ec2313
commit 5b479eb297
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

View file

@ -112,6 +112,8 @@ steps:
depends_on:
- music-samples
commands:
- apk update
- apk add --no-cache git
- CGO_ENABLED=0 go test -p 1 -failfast -timeout 20m -cover -gcflags=-d=checkptr -v ./...
---
kind: pipeline
@ -203,6 +205,8 @@ steps:
depends_on:
- music-samples
commands:
- apk update
- apk add --no-cache git
- CGO_ENABLED=0 go test -p 1 -failfast -timeout 20m -cover -gcflags=-d=checkptr -v ./...
...