20 lines
377 B
YAML
20 lines
377 B
YAML
pipeline:
|
|
fail:
|
|
image: scratch
|
|
commands:
|
|
- echo "Please work now!" && false
|
|
when:
|
|
event: [push, tag]
|
|
|
|
build_deb:
|
|
image: debian:bullseye-slim
|
|
pull: true
|
|
commands:
|
|
- apt update && apt install -y build-essential devscripts
|
|
- make package
|
|
- ls -laR ..
|
|
- echo Hello
|
|
when:
|
|
event: [push, tag]
|
|
|
|
branches: master |