Dominik Meyer
44ba3b23cd
Some checks reported errors
continuous-integration/drone Build encountered an error
24 lines
545 B
YAML
24 lines
545 B
YAML
kind: pipeline
|
|
type: kubernetes
|
|
name: build-amd64
|
|
platform:
|
|
arch: amd64
|
|
node_selector:
|
|
kubernetes.io/arch: amd64
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
|
|
- name: build-amd64
|
|
image: debian:bookworm-slim
|
|
commands:
|
|
- apt-get update
|
|
- apt-get -qy install clang-15 libsodium-dev libpgm-dev cmake make build-essential pkg-config
|
|
- mkdir build
|
|
- cd build; CC=clang-15 CXX=clang++-15 cmake ..
|
|
- make -j 4
|
|
- make test
|