OrbitalBeat/.drone.yml

14 lines
218 B
YAML
Raw Permalink Normal View History

2022-01-17 09:18:22 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: backend
2022-08-04 13:42:17 +00:00
image: golang:1.19-alpine
2022-01-17 09:18:22 +00:00
commands:
2022-08-04 16:07:08 +00:00
- apk update && apk add --no-cache gcc musl-dev
2022-01-18 10:56:39 +00:00
- GOAMD64=v2 go build -v -o orbeat .
2022-01-17 09:18:22 +00:00
...