--- .builds/debian.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/.builds/debian.yml b/.builds/debian.yml index acb9ab3e..c4fa265d 100644 --- a/.builds/debian.yml +++ b/.builds/debian.yml @@ -12,7 +12,20 @@ packages: 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 \ @@ -27,6 +40,4 @@ tasks: --with-curses \ --with-ssl \ --with-sasl -- build: | - cd mutt - make + make -j4 CFLAGS='-Wall -Werror' -- 2.51.0
