diff options
author | Mark Dain <mark@markdain.net> | 2022-01-22 16:57:55 +0000 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-01-24 09:38:23 +0100 |
commit | b9e96751af912a2b455209b24beaa403d9e8495a (patch) | |
tree | d3a885e11afb9ed3f5bdca9cb989ac7f3ff14d0a /.builds | |
parent | e5ad877af5629d8b29350bb9ff476afaa92a3c49 (diff) | |
download | aerc-b9e96751af912a2b455209b24beaa403d9e8495a.tar.gz |
build: replace archlinux by openbsd
This commit drops Arch Linux in favor of a BSD so there's more variety
in CI.
Link: https://lists.sr.ht/~rjarry/aerc-devel/%3C20220122033806.91728-1-ktprograms%40gmail.com%3E
Diffstat (limited to '.builds')
-rw-r--r-- | .builds/archlinux.yml | 13 | ||||
-rw-r--r-- | .builds/openbsd.yml | 14 |
2 files changed, 14 insertions, 13 deletions
diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml deleted file mode 100644 index f5c74acc..00000000 --- a/.builds/archlinux.yml +++ /dev/null @@ -1,13 +0,0 @@ -image: archlinux -packages: -- go -- scdoc -sources: -- https://git.sr.ht/~rjarry/aerc -tasks: -- build: | - cd aerc - make -- test: | - cd aerc - go test ./... diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml new file mode 100644 index 00000000..9fae1f20 --- /dev/null +++ b/.builds/openbsd.yml @@ -0,0 +1,14 @@ +--- +image: openbsd/latest +packages: + - go + - scdoc +sources: + - https://git.sr.ht/~rjarry/aerc +tasks: + - build: | + cd aerc + make + - test: | + cd aerc + go test ./... |