Fix drone build caused by golang regression

master
Jonas Franz 5 years ago
parent e6c8eb4619
commit 7503f4a9e2
  1. 6
      .drone.yml

@ -26,7 +26,7 @@ pipeline:
environment: environment:
GOPATH: /go GOPATH: /go
commands: commands:
- apk --no-cache add make git - apk --no-cache add make git gcc
- make test build - make test build
coverage: coverage:
image: golang:1.11.2-alpine image: golang:1.11.2-alpine
@ -42,7 +42,7 @@ pipeline:
environment: environment:
GOPATH: /go GOPATH: /go
commands: commands:
- apk --no-cache add make git - apk --no-cache add make git gcc
- make generate-release-file release - make generate-release-file release
when: when:
event: [ push ] event: [ push ]
@ -53,7 +53,7 @@ pipeline:
environment: environment:
GOPATH: /go GOPATH: /go
commands: commands:
- apk --no-cache add make git - apk --no-cache add make git gcc
- make generate-release-file release - make generate-release-file release
when: when:
event: [ tag ] event: [ tag ]

Loading…
Cancel
Save