build: check make install

Ensure that install works on all platforms.
This commit is contained in:
Mark Dain 2022-01-22 16:57:59 +00:00 committed by Robin Jarry
parent 1864680bfc
commit e58194c7b5
4 changed files with 24 additions and 0 deletions

View File

@ -4,6 +4,8 @@ packages:
- scdoc
sources:
- https://git.sr.ht/~rjarry/aerc
environment:
DESTDIR: ./out
tasks:
- checkfmt: |
cd aerc
@ -11,6 +13,10 @@ tasks:
- build: |
cd aerc
make
- install: |
cd aerc
make install
make checkinstall
- test: |
cd aerc
go test ./...

View File

@ -4,10 +4,16 @@ packages:
- scdoc
sources:
- https://git.sr.ht/~rjarry/aerc
environment:
DESTDIR: ./out
tasks:
- build: |
cd aerc
make
- install: |
cd aerc
make install
make checkinstall
- test: |
cd aerc
go test ./...

View File

@ -4,10 +4,16 @@ packages:
- scdoc
sources:
- https://git.sr.ht/~rjarry/aerc
environment:
DESTDIR: ./out
tasks:
- build: |
cd aerc
make
- install: |
cd aerc
make install
make checkinstall
- test: |
cd aerc
go test ./...

View File

@ -5,10 +5,16 @@ packages:
- scdoc
sources:
- https://git.sr.ht/~rjarry/aerc
environment:
DESTDIR: ./out
tasks:
- build: |
cd aerc
make
- install: |
cd aerc
make install
make checkinstall
- test: |
cd aerc
go test ./...