logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/
commit: a28e3a074dd1a6e55dd5d042d3247202321fd1aa
parent 2e3b088aec6fd56b69191cead91810b194e99418
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Wed, 26 Mar 2025 16:00:06 +0100

.builds: split `make clean check`

Diffstat:

M.builds/archlinux.yml6++++--
M.builds/freebsd.yml6++++--
M.builds/netbsd.yml6++++--
3 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml @@ -12,11 +12,13 @@ tasks: - clang: | cd utils-std CC=clang ./configure - make clean check + make clean + make check - gcc: | cd utils-std CC=gcc ./configure - make clean check + make clean + make check triggers: - action: email condition: failure diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml @@ -14,11 +14,13 @@ tasks: - clang: | cd utils-std CC=clang ./configure - gmake clean check + gmake clean + gmake check - gcc: | cd utils-std CC=gcc ./configure - gmake clean check + gmake clean + gmake check triggers: - action: email condition: failure diff --git a/.builds/netbsd.yml b/.builds/netbsd.yml @@ -14,11 +14,13 @@ tasks: - clang: | cd utils-std CC=clang CRAM=true ./configure - gmake clean check + gmake clean + gmake check - gcc: | cd utils-std CC=gcc CRAM=true ./configure - gmake clean check + gmake clean + gmake check triggers: - action: email condition: failure