seer/.drone.yml

36 lines
574 B
YAML
Raw Normal View History

2022-07-15 21:53:50 +02:00
---
kind: pipeline
type: exec
name: abacus checks
steps:
- name: pre commit check
2022-07-15 21:53:50 +02:00
commands:
- nix develop . --command pre-commit run --all
2022-07-15 21:53:50 +02:00
- name: flake check
commands:
- nix flake check
2022-07-15 21:53:50 +02:00
- name: package check
commands:
- nix build
- name: notifiy
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
when:
status:
- failure
- success
...