summaryrefslogtreecommitdiff
path: root/.builds/alpine-edge.yml
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2022-01-20 18:44:13 +0100
committerRobin Jarry <robin@jarry.cc>2022-01-20 20:51:42 +0100
commita46262ee57b3c818729fb28cfa930612fd9e8834 (patch)
tree0a36ff55a42ef40f286587f818d65785e1db18b2 /.builds/alpine-edge.yml
parentbf4abd309e4c5c4eb3a43017ed20e4a3cf85fee1 (diff)
downloadaerc-a46262ee57b3c818729fb28cfa930612fd9e8834.zip
build: add multiple distributions
Add build and test on debian, fedora and archlinux. Only check code formatting on alpine. Signed-off-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to '.builds/alpine-edge.yml')
-rw-r--r--.builds/alpine-edge.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.builds/alpine-edge.yml b/.builds/alpine-edge.yml
new file mode 100644
index 0000000..fa9a49f
--- /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 ./...