disable brotli support without CGO
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Sebastian Frank
2019-03-21 16:12:55 +01:00
parent 23fd5fe1d4
commit 5624c7af87
11 changed files with 123 additions and 43 deletions

View File

@@ -17,7 +17,7 @@ steps:
- name: test
image: golang:latest
environment:
CGO_ENABLED: 0
CGO_ENABLED: 1
GOOS: linux
GOARCH: amd64
commands:
@@ -29,7 +29,7 @@ steps:
- name: build for linux
image: golang:latest
environment:
CGO_ENABLED: 0
CGO_ENABLED: 1
GOOS: linux
GOARCH: amd64
commands:
@@ -48,7 +48,7 @@ steps:
- name: build for freebsd
image: golang:latest
environment:
CGO_ENABLED: 0
CGO_ENABLED: 1
GOOS: freebsd
GOARCH: amd64
commands:
@@ -59,7 +59,7 @@ steps:
- name: build for macos
image: golang:latest
environment:
CGO_ENABLED: 0
CGO_ENABLED: 1
GOOS: darwin
GOARCH: amd64
commands:
@@ -70,7 +70,7 @@ steps:
- name: build for windows
image: golang:latest
environment:
CGO_ENABLED: 0
CGO_ENABLED: 1
GOOS: windows
GOARCH: amd64
FILEEXT: .exe