MeteorLight/.drone.yml
DataHoarder 05a8ed380a
All checks were successful
continuous-integration/drone/push Build is passing
Added Vorbis encoding support
2022-07-28 15:52:39 +02:00

16 lines
615 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: golang:1.18-alpine
commands:
- apk update
- apk add --no-cache git gcc g++ musl-dev bash autoconf automake cmake make libtool gettext openssl-dev flac-dev opus-dev opusfile-dev libopusenc-dev libvorbis-dev libsamplerate-dev lame-dev libebur128-dev fdk-aac-dev --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community
- git clone --depth 1 https://git.gammaspectra.live/S.O.N.G/alac.git && cd alac && autoreconf -fi && ./configure --prefix /usr && make && make install && cd ..
- go build -v .
...