From 8a0059a22906b6ce618e38e61654397db94457e0 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 2 Apr 2024 11:08:59 +0200 Subject: [PATCH] .builds/matrix.yml: distclean between runs Signed-off-by: Drew DeVault --- .builds/matrix.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.builds/matrix.yml b/.builds/matrix.yml index 88eda79d9..2413fb24c 100644 --- a/.builds/matrix.yml +++ b/.builds/matrix.yml @@ -12,13 +12,17 @@ sources: tasks: - make_jemalloc: | cd redict + make clean && make distclean make -C src V=1 USE_JEMALLOC=yes MALLOC=jemalloc BUILD_TLS=no - make_tls: | cd redict + make clean && make distclean make -C src V=1 USE_JEMALLOC=no MALLOC=libc BUILD_TLS=yes - make_jemalloc_tls: | cd redict + make clean && make distclean make -C src V=1 USE_JEMALLOC=yes MALLOC=jemalloc BUILD_TLS=yes - make_tls_systemd: | cd redict + make clean && make distclean make -C src V=1 BUILD_TLS=yes USE_SYSTEMD=yes