hydroforth/.drone.yml
Dominic Grimm 411665061d
All checks were successful
continuous-integration/drone/push Build is passing
Update CI
2023-08-05 18:17:30 +02:00

20 lines
346 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: ghcr.io/rikorose/gcc-cmake
commands:
- mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=Release ..
- make
- name: docs
image: docker.io/corentinaltepe/doxygen
commands:
- doxygen
- ls docs
depends_on:
- build