diff --git a/.builds/alpine.yml b/.builds/alpine.yml new file mode 100644 index 0000000..bbf26fb --- /dev/null +++ b/.builds/alpine.yml @@ -0,0 +1,11 @@ +image: alpine/edge +sources: + - https://github.com/martanne/abduco +tasks: + - build: | + cd abduco + ./configure + make + - test: | + cd abduco + ./testsuite.sh diff --git a/.builds/debian.yml b/.builds/debian.yml new file mode 100644 index 0000000..a4f42a0 --- /dev/null +++ b/.builds/debian.yml @@ -0,0 +1,11 @@ +image: debian/stable +sources: + - https://github.com/martanne/abduco +tasks: + - build: | + cd abduco + ./configure + make + - test: | + cd abduco + ./testsuite.sh diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml new file mode 100644 index 0000000..0927677 --- /dev/null +++ b/.builds/freebsd.yml @@ -0,0 +1,11 @@ +image: freebsd/latest +sources: + - https://github.com/martanne/abduco +tasks: + - build: | + cd abduco + ./configure + make + - test: | + cd abduco + ./testsuite.sh diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml new file mode 100644 index 0000000..59d1b5f --- /dev/null +++ b/.builds/openbsd.yml @@ -0,0 +1,11 @@ +image: openbsd/latest +sources: + - https://github.com/martanne/abduco +tasks: + - build: | + cd abduco + ./configure + make + - test: | + cd abduco + ./testsuite.sh