commit ef6d64fbae0c10cb115f44f878b9a8cea5e02f23
parent 5dc80acebb20afb1317fbe4faa686fc4fc2aa916
Author: Stephen Gregoratto <dev@sgregoratto.me>
Date: Sat, 6 Jul 2019 09:51:30 +1000
add srht build manifests
Diffstat:
4 files changed, 48 insertions(+), 0 deletions(-)
diff --git a/.builds/alpine.yml b/.builds/alpine.yml
@@ -0,0 +1,12 @@
+image: alpine/edge
+sources:
+ - https://git.sr.ht/~toasterking/scdoc2mdoc
+tasks:
+ - build: |
+ cd scdoc2mdoc
+ ./configure
+ make
+triggers:
+ - action: email
+ condition: failure
+ to: "<dev@sgregoratto.me>"
diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml
@@ -0,0 +1,12 @@
+image: archlinux
+sources:
+ - https://git.sr.ht/~toasterking/scdoc2mdoc
+tasks:
+ - build: |
+ cd scdoc2mdoc
+ ./configure
+ make
+triggers:
+ - action: email
+ condition: failure
+ to: "<dev@sgregoratto.me>"
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
@@ -0,0 +1,12 @@
+image: freebsd/current
+sources:
+ - https://git.sr.ht/~toasterking/scdoc2mdoc
+tasks:
+ - build: |
+ cd scdoc2mdoc
+ ./configure
+ make
+triggers:
+ - action: email
+ condition: failure
+ to: "<dev@sgregoratto.me>"
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml
@@ -0,0 +1,12 @@
+image: openbsd/6.5
+sources:
+ - https://git.sr.ht/~toasterking/scdoc2mdoc
+tasks:
+ - build: |
+ cd scdoc2mdoc
+ ./configure
+ make
+triggers:
+ - action: email
+ condition: failure
+ to: "<dev@sgregoratto.me>"