aerc/.builds/fedora-latest.yml
Robin Jarry ba892d7769 builds: add gnupg in preparation of gpg integration
This is required for future gpg unit tests to run.

Signed-off-by: Robin Jarry <robin@jarry.cc>
2022-04-14 21:51:09 +02:00

24 lines
351 B
YAML

---
image: fedora/latest
packages:
- golang
- gnupg2
- notmuch-devel
- scdoc
sources:
- "https://git.sr.ht/~rjarry/aerc"
environment:
DESTDIR: ./out
GOFLAGS: "-tags=notmuch"
tasks:
- build: |
cd aerc
make
- install: |
cd aerc
make install
make checkinstall
- test: |
cd aerc
go test ./...