From 5b479eb297fa853d36b32bdb7a4be4910ff865f3 Mon Sep 17 00:00:00 2001 From: WeebDataHoarder <57538841+WeebDataHoarder@users.noreply.github.com> Date: Sat, 29 Oct 2022 10:38:19 +0200 Subject: [PATCH] Add git to nocgo build step --- .drone.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.drone.yml b/.drone.yml index 355370d..d297c4e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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 ./... ...