.builds/matrix.yml: distclean between runs

Signed-off-by: Drew DeVault <sir@cmpwn.com>
This commit is contained in:
Drew DeVault 2024-04-02 11:08:59 +02:00
parent 1502824239
commit 8a0059a229

View File

@ -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