A .builds/debian.yml => .builds/debian.yml +17 -0
@@ 0,0 1,17 @@
+image: debian/testing
+packages:
+ - autoconf-archive
+ - python3-feedparser
+ - python3-pyrss2gen
+sources:
+ - https://git.sr.ht/~jack/msrss
+tasks:
+ - build: |
+ cd msrss
+ autoreconf -i
+ ./configure
+ make distcheck
+triggers:
+ - condition: failure
+ action: email
+ to: jack@jackkelly.name
A .builds/nixos.yml => .builds/nixos.yml +13 -0
@@ 0,0 1,13 @@
+image: nixos/latest
+repositories:
+ nixpkgs: https://nixos.org/channels/nixpkgs-unstable
+sources:
+ - https://git.sr.ht/~jack/msrss
+tasks:
+ - build: |
+ cd nixos
+ nix-build --no-out-link
+triggers:
+ - condition: failure
+ action: email
+ to: jack@jackkelly.name