Add Sourcehub CI integration

This commit is contained in:
Marc André Tanner 2020-02-26 14:25:26 +01:00
parent 4a2c9ded43
commit 042fa2255b
4 changed files with 44 additions and 0 deletions

11
.builds/alpine.yml Normal file
View File

@ -0,0 +1,11 @@
image: alpine/edge
sources:
- https://github.com/martanne/abduco
tasks:
- build: |
cd abduco
./configure
make
- test: |
cd abduco
./testsuite.sh

11
.builds/debian.yml Normal file
View File

@ -0,0 +1,11 @@
image: debian/stable
sources:
- https://github.com/martanne/abduco
tasks:
- build: |
cd abduco
./configure
make
- test: |
cd abduco
./testsuite.sh

11
.builds/freebsd.yml Normal file
View File

@ -0,0 +1,11 @@
image: freebsd/latest
sources:
- https://github.com/martanne/abduco
tasks:
- build: |
cd abduco
./configure
make
- test: |
cd abduco
./testsuite.sh

11
.builds/openbsd.yml Normal file
View File

@ -0,0 +1,11 @@
image: openbsd/latest
sources:
- https://github.com/martanne/abduco
tasks:
- build: |
cd abduco
./configure
make
- test: |
cd abduco
./testsuite.sh