MeteorLight/.drone.yml

16 lines
612 B
YAML
Raw Normal View History

2022-03-02 17:54:56 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: golang:1.18-alpine
2022-03-02 17:54:56 +00:00
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 vorbis-dev libsamplerate-dev lame-dev libebur128-dev fdk-aac-dev --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community
2022-04-21 12:06:35 +00:00
- 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 ..
2022-03-02 17:54:56 +00:00
- go build -v .
...