test-drone/.drone.yml
Bruno BELANYI 6a46fae735
Some checks failed
continuous-integration/drone/push Build is failing
ci/woodpecker/push/woodpecker Pipeline failed
fixup! ci: woodpecker: debug clone
2023-03-18 22:31:02 +00:00

41 lines
633 B
YAML

---
kind: pipeline
type: docker
name: exec docker test
clone:
disable: true
steps:
- name: clone
image: woodpeckerci/plugin-git
- name: test
image: hello-world
---
kind: pipeline
type: exec
name: exec runner test
steps:
- name: test
commands:
- nix run 'nixpkgs#hello'
- name: notify
commands:
- nix run 'github:ambroisie/matrix-notifier'
environment:
ADDRESS:
from_secret: matrix_homeserver
ROOM:
from_secret: matrix_roomid
USER:
from_secret: matrix_username
PASS:
from_secret: matrix_password
settings:
trigger:
status:
- failure
- success
...