vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 0b9bc4316bfd7cdc196710b8a70d5d7715ab1d6e
parent 153a1dea58ade24e730b3aad7161d45a749927f0
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Thu, 13 Feb 2020 14:07:37 +0100

ci: add sourcehut build manifests

Diffstat:
A.builds/alpine.yml | 17+++++++++++++++++
A.builds/debian.yml | 19+++++++++++++++++++
A.builds/freebsd.yml | 17+++++++++++++++++
A.builds/openbsd.yml | 16++++++++++++++++
4 files changed, 69 insertions(+), 0 deletions(-)

diff --git a/.builds/alpine.yml b/.builds/alpine.yml @@ -0,0 +1,17 @@ +image: alpine/edge +packages: + - acl-dev + - libtermkey-dev + - lua5.3-dev + - lua5.3-lpeg + - ncurses-dev +sources: + - https://github.com/martanne/vis +tasks: + - build: | + cd vis + ./configure + make + - test: | + cd vis + make test diff --git a/.builds/debian.yml b/.builds/debian.yml @@ -0,0 +1,19 @@ +image: debian/stable +packages: + - libacl1-dev + - liblua5.3-dev + - libncursesw5-dev + - libselinux1-dev + - libtermkey-dev + - libtre-dev + - lua-lpeg +sources: + - https://github.com/martanne/vis +tasks: + - build: | + cd vis + ./configure + make + - test: | + cd vis + make test diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml @@ -0,0 +1,17 @@ +image: freebsd/latest +packages: + - gmake + - libtermkey + - lua52 + - lua52-lpeg + - pkgconf +sources: + - https://github.com/martanne/vis +tasks: + - build: | + cd vis + ./configure + make + - test: | + cd vis + gmake test diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml @@ -0,0 +1,16 @@ +image: openbsd/latest +packages: + - gmake + - libtermkey + - lua-5.3.5 + - lua53-lpeg +sources: + - https://github.com/martanne/vis +tasks: + - build: | + cd vis + ./configure + make + - test: | + cd vis + gmake test