danbooru-client/.drone.yml
Luca Beltrame cdf4a9b05c
All checks were successful
continuous-integration/drone/push Build is passing
Keep everything under wraps
2019-06-09 18:39:25 +02:00

45 lines
878 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: einar/kde
privileged: true
pull: if-not-exists
commands:
- mkdir build
- cd build
- cmake ../
- make
when:
event:
- push
branch:
- master
- name: pack
image: einar/kde
pull: if-not-exists
commands:
- mkdir dists
- cmake -B dists
- make dist -C dists
when:
event:
- tag
- name: notify
image: plugins/matrix
settings:
homeserver: https://conference.heavensinferno.net
roomid:
from_secret: room_id
accesstoken:
from_secret: access_token
userid:
from_secret: user_id
when:
status:
- failure
- success