ci: add Drone CI
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Bruno BELANYI 2021-08-31 20:21:12 +02:00
parent ac6b633c89
commit fa092f8876
1 changed files with 27 additions and 0 deletions

27
.drone.yml Normal file
View File

@ -0,0 +1,27 @@
---
kind: pipeline
type: exec
name: abacus checks
steps:
- name: flake check
commands:
- nix flake check
- 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
...