All checks were successful
continuous-integration/drone/push Build is passing
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)
30 lines
472 B
YAML
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
|
|
|
|
|
|
|
|
|