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

This commit is contained in:
Luca Beltrame 2019-06-08 15:17:16 +02:00
parent b48dffd604
commit b262bd2e01
Signed by: einar
GPG key ID: 8DF631FD021DB0C5

28
.drone.yml Normal file
View file

@ -0,0 +1,28 @@
kind: pipeline
name: default
steps:
- name: build
image: einar/kde
pull: if-not-exists
commands:
- mkdir build
- cmake . -d build
- make -C build -j2
when:
event:
- push
- name: pack
image: einar/kde
pull: if-not-exists
commands:
- mkdir build
- cmake . -d build
- make dist -C build
when:
event:
- tag