alac/.drone.yml

18 lines
365 B
YAML
Raw Permalink Normal View History

2022-04-21 08:53:01 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: debian:bullseye
commands:
- DEBIAN_FRONTEND=noninteractive apt update
2022-04-21 09:03:36 +00:00
- DEBIAN_FRONTEND=noninteractive apt install -y g++ gcc autoconf automake make libtool-bin
2022-04-21 08:53:01 +00:00
- autoreconf -fi
- ./configure --prefix /usr
- make -j$(nproc)
- make install
...