Dominic Grimm
411665061d
All checks were successful
continuous-integration/drone/push Build is passing
19 lines
346 B
YAML
19 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
|