aerc/.builds/alpine-edge.yml

27 lines
392 B
YAML

---
image: alpine/edge
packages:
- go
- gnupg
- notmuch-dev
- scdoc
sources:
- "https://git.sr.ht/~rjarry/aerc"
environment:
DESTDIR: ./out
GOFLAGS: "-tags=notmuch"
tasks:
- checkfmt: |
cd aerc
make checkfmt
- build: |
cd aerc
make
- install: |
cd aerc
make install
make checkinstall
- test: |
cd aerc
go test ./...