From a46262ee57b3c818729fb28cfa930612fd9e8834 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Thu, 20 Jan 2022 18:44:13 +0100 Subject: build: add multiple distributions Add build and test on debian, fedora and archlinux. Only check code formatting on alpine. Signed-off-by: Robin Jarry --- .builds/alpine-edge.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .builds/alpine-edge.yml (limited to '.builds/alpine-edge.yml') diff --git a/.builds/alpine-edge.yml b/.builds/alpine-edge.yml new file mode 100644 index 00000000..fa9a49f6 --- /dev/null +++ b/.builds/alpine-edge.yml @@ -0,0 +1,16 @@ +image: alpine/edge +packages: +- go +- scdoc +sources: +- https://git.sr.ht/~rjarry/aerc +tasks: +- checkfmt: | + cd aerc + make checkfmt +- build: | + cd aerc + make +- test: | + cd aerc + go test ./... -- cgit