Bruno BELANYI
c8d7c17711
Now that we have actual dependencies, we need to run 'pre-commit run' outside of the build sandbox.
32 lines
521 B
YAML
32 lines
521 B
YAML
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: abacus checks
|
|
|
|
steps:
|
|
- name: pre commit check
|
|
commands:
|
|
- nix develop . --command pre-commit run --all
|
|
|
|
- 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
|
|
...
|