1d68e1d14f
Fix the following error:
+ make GO=/home/build/go/bin/go1.13
make: *** No targets specified and no makefile found. Stop.
Fixes: dbc5bb41a5
("ci: slim down CI Pipeline")
Signed-off-by: Moritz Poldrack <git@moritz.sh>
Acked-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
31 lines
530 B
YAML
31 lines
530 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: |
|
|
go install golang.org/dl/go1.13@latest
|
|
~/go/bin/go1.13 download
|
|
cd aerc
|
|
make GO=~/go/bin/go1.13
|