oc-mint/.drone.yml

30 lines
483 B
YAML
Raw Normal View History

2022-12-04 20:53:22 +01:00
---
kind: pipeline
type: docker
name: amd64-main
platform:
os: linux
arch: amd64
trigger:
branch:
- main
event:
- push
- pull_request
steps:
- name: build
image: debian
commands:
- apt-get update
- apt-get -y install build-essential libboost-system-dev libboost-date-time-dev git cmake graphviz doxygen
- cmake -B build -S .
2022-12-04 21:46:40 +01:00
- cmake --build build -t all test
2022-12-04 20:53:22 +01:00
when:
branch:
- main
event:
- push