OrbitalBeat/.drone.yml
DataHoarder 6c4696257b
All checks were successful
continuous-integration/drone/push Build is passing
Add gcc to test
2022-08-04 18:07:08 +02:00

14 lines
218 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: backend
image: golang:1.19-alpine
commands:
- apk update && apk add --no-cache gcc musl-dev
- GOAMD64=v2 go build -v -o orbeat .
...