ci: migrate to 'exec' runner

Now that I have written a script to do the Matrix notification, I can do
that.
This commit is contained in:
Bruno BELANYI 2021-06-13 18:38:06 +02:00
parent 40380be139
commit dd1742b5b8

View file

@ -1,24 +1,27 @@
---
kind: pipeline kind: pipeline
name: check config type: exec
name: NixOS config check
steps: steps:
- name: format check - name: format check
image: nixos/nix
commands: commands:
- nix-shell -p nixpkgs-fmt --run 'nixpkgs-fmt . --check' - nix develop -c nixpkgs-fmt .
- name: notify - name: notifiy
image: plugins/matrix commands:
settings: - nix run .#matrix-notifier
homeserver: environment:
ADDRESS:
from_secret: matrix_homeserver from_secret: matrix_homeserver
roomid: ROOM:
from_secret: matrix_roomid from_secret: matrix_roomid
username: USER:
from_secret: matrix_username from_secret: matrix_username
password: PASS:
from_secret: matrix_password from_secret: matrix_password
trigger: when:
status: status:
- failure - failure
- success - success
...