From 7503f4a9e25dc2a1d6472de107325fb4dd918f28 Mon Sep 17 00:00:00 2001 From: Jonas Franz Date: Mon, 17 Dec 2018 14:26:31 +0100 Subject: [PATCH] Fix drone build caused by golang regression --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 80c0391..9245fa8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -26,7 +26,7 @@ pipeline: environment: GOPATH: /go commands: - - apk --no-cache add make git + - apk --no-cache add make git gcc - make test build coverage: image: golang:1.11.2-alpine @@ -42,7 +42,7 @@ pipeline: environment: GOPATH: /go commands: - - apk --no-cache add make git + - apk --no-cache add make git gcc - make generate-release-file release when: event: [ push ] @@ -53,7 +53,7 @@ pipeline: environment: GOPATH: /go commands: - - apk --no-cache add make git + - apk --no-cache add make git gcc - make generate-release-file release when: event: [ tag ]