From 4ddce913fb989ca4e2a0cd5d433b11e1db482f81 Mon Sep 17 00:00:00 2001 From: Jonas Franz Date: Mon, 17 Dec 2018 14:39:12 +0100 Subject: [PATCH] Fix drone build caused by golang regression --- .drone.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9245fa8..fe05eb6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,26 +10,24 @@ clone: pipeline: deps: - image: golang:1.11.2-alpine + image: golang:1.11.2 pull: true environment: GOPATH: /go commands: - - apk --no-cache add git - go get -u github.com/golang/dep/cmd/dep - dep ensure - go get -u github.com/gobuffalo/packr/... - packr -z test: - image: golang:1.11.2-alpine + image: golang:1.11.2 pull: true environment: GOPATH: /go commands: - - apk --no-cache add make git gcc - make test build coverage: - image: golang:1.11.2-alpine + image: golang:1.11.2 pull: true environment: GOPATH: /go @@ -37,28 +35,26 @@ pipeline: commands: - make coverage static: - image: golang:1.11.2-alpine + image: golang:1.11.2 pull: true environment: GOPATH: /go commands: - - apk --no-cache add make git gcc - make generate-release-file release when: event: [ push ] branch: [ master ] static: - image: golang:1.11.2-alpine + image: golang:1.11.2 pull: true environment: GOPATH: /go commands: - - apk --no-cache add make git gcc - make generate-release-file release when: event: [ tag ] clean: - image: golang:1.11.2-alpine + image: golang:1.11.2 pull: true environment: GOPATH: /go