ba892d7769
This is required for future gpg unit tests to run. Signed-off-by: Robin Jarry <robin@jarry.cc>
23 lines
352 B
YAML
23 lines
352 B
YAML
---
|
|
image: debian/stable
|
|
packages:
|
|
- golang
|
|
- gnupg2
|
|
- libnotmuch-dev
|
|
- 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 ./...
|