Skip to content

Commit

Permalink
ci: add sourcehut build manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
martanne committed Feb 13, 2020
1 parent ed3ffd8 commit bfeb4d3
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .builds/alpine.yml
Original file line number Diff line number Diff line change
@@ -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
19 changes: 19 additions & 0 deletions .builds/debian.yml
Original file line number Diff line number Diff line change
@@ -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
17 changes: 17 additions & 0 deletions .builds/freebsd.yml
Original file line number Diff line number Diff line change
@@ -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
16 changes: 16 additions & 0 deletions .builds/openbsd.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit bfeb4d3

Please sign in to comment.