From 042fa2255b6e8dd0d019aca573ec4b32ae5417cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Wed, 26 Feb 2020 14:25:26 +0100 Subject: [PATCH] Add Sourcehub CI integration --- .builds/alpine.yml | 11 +++++++++++ .builds/debian.yml | 11 +++++++++++ .builds/freebsd.yml | 11 +++++++++++ .builds/openbsd.yml | 11 +++++++++++ 4 files changed, 44 insertions(+) create mode 100644 .builds/alpine.yml create mode 100644 .builds/debian.yml create mode 100644 .builds/freebsd.yml create mode 100644 .builds/openbsd.yml 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