Added Drone CI build
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
DataHoarder 2021-10-25 01:50:25 +02:00
parent cd5b99a904
commit faa43aa457

17
.drone.yml Normal file
View file

@ -0,0 +1,17 @@
---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: amd64
steps:
- name: build
image: ubuntu:20.04
commands:
- apt update
- DEBIAN_FRONTEND=noninteractive apt install -y clang clang++ cmake
- ./build.sh
...