scdoc2mdoc

A fork of scdoc to output mdoc(7)
git clone git://git.sgregoratto.me/scdoc2mdoc
Log | Files | Refs | README | LICENSE

commit ef6d64fbae0c10cb115f44f878b9a8cea5e02f23
parent 5dc80acebb20afb1317fbe4faa686fc4fc2aa916
Author: Stephen Gregoratto <dev@sgregoratto.me>
Date:   Sat,  6 Jul 2019 09:51:30 +1000

add srht build manifests

Diffstat:
A.builds/alpine.yml | 12++++++++++++
A.builds/archlinux.yml | 12++++++++++++
A.builds/freebsd.yml | 12++++++++++++
A.builds/openbsd.yml | 12++++++++++++
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>"