danbooru-client/.drone.yml
Luca Beltrame 0ee23fe9f7
All checks were successful
continuous-integration/drone/push Build is passing
Make the Docker image privileged
Otherwise kconfig_compiler won't work (needs statx, but it can be
whitelisted in Docker only with a version of libseccomp not available in
Leap 15.1)
2019-06-08 16:01:43 +02:00

30 lines
472 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
- name: pack
image: einar/kde
pull: if-not-exists
commands:
- mkdir dists
- cmake -B dists
- make dist -C dists
when:
event:
- tag