WhisperCom/.drone.yml
Dominik Meyer 24058e3cbe
Some checks failed
continuous-integration/drone Build is failing
FIX: update debian package db
2023-09-03 22:58:17 +02:00

19 lines
401 B
YAML

kind: pipeline
type: kubernetes
name: build-amd64
platform:
arch: amd64
node_selector:
kubernetes.io/arch: amd64
steps:
- name: build-amd64
image: debian:bookworm-slim
commands:
- apt-get update
- apt-get -qy install clang-15 libsodium-dev libpgm-dev
- mkdir build
- cd build; CC=clang-15 CXX=clang++-15 cmake ..
- make -j 4
- make test