We need gcc I guess...
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Tyler 2021-04-15 01:10:13 -04:00
parent 30de693795
commit ba0bffed6d
1 changed files with 5 additions and 0 deletions

View File

@ -5,7 +5,11 @@ type: docker
steps:
- name: test
image: golang:alpine
volumes:
- name: build
path: /build
commands:
- apk --no-cache add git gcc musl-dev
- go test ./...
- name: build
image: golang:alpine
@ -13,6 +17,7 @@ steps:
- name: build
path: /build
commands:
- apk --no-cache add git gcc musl-dev
- go build -o /build/godns
- name: docker
image: plugins/docker