602a5778e8
Due to github.com/daixiang0/gci requiring io/fs, the minimum required Go version for aerc needs to be bumped to 1.16 Signed-off-by: Moritz Poldrack <git@moritz.sh> Signed-off-by: Robin Jarry <robin@jarry.cc>
32 lines
584 B
YAML
32 lines
584 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:
|
|
- lint: |
|
|
cd aerc
|
|
make lint
|
|
- build: |
|
|
cd aerc
|
|
make
|
|
- install: |
|
|
cd aerc
|
|
make install
|
|
make checkinstall
|
|
- test: |
|
|
cd aerc
|
|
go test ./...
|
|
- ancient-go-version: |
|
|
curl -O https://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/go-1.16.15-r0.apk
|
|
sudo apk add ./go-1.16.15-r0.apk
|
|
cd aerc
|
|
make clean
|
|
make
|