diff options
author | Mark Dain <mark@markdain.net> | 2022-01-22 16:57:59 +0000 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-01-24 09:38:56 +0100 |
commit | e58194c7b515b56abafd953ab1ddf8518949f505 (patch) | |
tree | 50ff435b39c5e511331db5e0764043aead80fe7c /.builds | |
parent | 1864680bfcf7f24e785c5fd2473c780a2801d861 (diff) | |
download | aerc-e58194c7b515b56abafd953ab1ddf8518949f505.tar.gz |
build: check make install
Ensure that install works on all platforms.
Diffstat (limited to '.builds')
-rw-r--r-- | .builds/alpine-edge.yml | 6 | ||||
-rw-r--r-- | .builds/debian-stable.yml | 6 | ||||
-rw-r--r-- | .builds/fedora-latest.yml | 6 | ||||
-rw-r--r-- | .builds/openbsd.yml | 6 |
4 files changed, 24 insertions, 0 deletions
diff --git a/.builds/alpine-edge.yml b/.builds/alpine-edge.yml index fa9a49f6..e2467e51 100644 --- a/.builds/alpine-edge.yml +++ b/.builds/alpine-edge.yml @@ -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 ./... diff --git a/.builds/debian-stable.yml b/.builds/debian-stable.yml index 5a406c81..b6bc7f1f 100644 --- a/.builds/debian-stable.yml +++ b/.builds/debian-stable.yml @@ -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 ./... diff --git a/.builds/fedora-latest.yml b/.builds/fedora-latest.yml index 997daff1..20455061 100644 --- a/.builds/fedora-latest.yml +++ b/.builds/fedora-latest.yml @@ -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 ./... diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index 9fae1f20..0213bafe 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -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 ./... |