aerc/.builds/alpine-edge.yml
Mark Dain e58194c7b5 build: check make install
Ensure that install works on all platforms.
2022-01-24 09:38:56 +01:00

23 lines
301 B
YAML

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