Kirika/.drone.yml
DataHoarder 98c4bb0757
All checks were successful
continuous-integration/drone/push Build is passing
Added Drone CI configuration
2022-02-22 12:45:20 +01:00

20 lines
482 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: submodules/LFS
image: alpine/git
commands:
- apk update && apk add --no-cache git-lfs && git lfs install
- git submodule update --init --recursive
- name: test
image: golang:1.18rc1-bullseye
commands:
- DEBIAN_FRONTEND=noninteractive apt update
- DEBIAN_FRONTEND=noninteractive apt install -y libflac-dev libopus-dev libopusfile-dev libsamplerate0-dev
- go test -v
...