diff options
Diffstat (limited to '.builds')
-rw-r--r-- | .builds/openbsd.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index 811fbf7a..b83670bb 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -1,8 +1,10 @@ --- image: openbsd/latest packages: - - go + - base64 + - gmake - gnupg + - go - scdoc sources: - "https://git.sr.ht/~rjarry/aerc" @@ -11,8 +13,8 @@ environment: tasks: - build: | cd aerc - make + gmake - install: | cd aerc - make install - make checkinstall + gmake install + gmake checkinstall |