While there, sort packages.
---
 .builds/freebsd.yml | 41 ++++++++++++++++++++++++++---------------
 1 file changed, 26 insertions(+), 15 deletions(-)

diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
index 448721a2..d6032902 100644
--- a/.builds/freebsd.yml
+++ b/.builds/freebsd.yml
@@ -1,23 +1,36 @@
 image: freebsd/latest
 packages:
-- automake
 - autoconf
-- mime-support
-- urlview
-- indexinfo
-- gpgme
-- libgpg-error
-- libassuan
-- libidn2
-- libunistring
-- kyotocabinet
-- libiconv
+- automake
 - gettext-runtime
 - gettext-tools
+- gpgme
+- indexinfo
+- kyotocabinet
+- libassuan
+- libgpg-error
+- libiconv
+- libidn2
+- libunistring
+- mime-support
+- urlview
 sources:
 - https://git.sr.ht/~mutt/mutt
 tasks:
-- configure: |
+- default: |
+    cd mutt
+    autoreconf -if
+    ./configure
+    make -j4 CFLAGS='-Wall -Werror'
+
+- without-wc-funcs: |
+    cd mutt
+    autoreconf -if
+    ./configure \
+        --without-wc-funcs
+    make -j4 CFLAGS='-Wall -Werror'
+
+- original: |
     cd mutt
     autoreconf -if
     ./configure \
@@ -34,6 +47,4 @@ tasks:
         --without-sasl \
         --with-libiconv-prefix=/usr/local \
         --with-libintl-prefix=/usr/local
-- build: |
-    cd mutt
-    make
+      make -j4 CFLAGS='-Wall -Werror'
-- 
2.51.0

Reply via email to