From feb0db4b29d9d0abe1f30f41b2db5ddccac96a99 Mon Sep 17 00:00:00 2001 From: Jelte Fennema Date: Mon, 24 Oct 2022 14:20:43 +0200 Subject: [PATCH] Silence make --- ci/build-citus.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build-citus.sh b/ci/build-citus.sh index fa04e70da..afa84eb69 100755 --- a/ci/build-citus.sh +++ b/ci/build-citus.sh @@ -36,7 +36,7 @@ build_ext() { CFLAGS=-Werror "${basedir}/configure" PG_CONFIG="/usr/lib/postgresql/${pg_major}/bin/pg_config" --enable-coverage --with-security-flags LLVM_CONFIG=llvm-config-14 CLANG=clang-14 installdir="${builddir}/install" - make -j$(nproc) && mkdir -p "${installdir}" && { make DESTDIR="${installdir}" install-all || make DESTDIR="${installdir}" install ; } + make -j$(nproc) -s && mkdir -p "${installdir}" && { make DESTDIR="${installdir}" install-all || make DESTDIR="${installdir}" install ; } cd "${installdir}" && find . -type f -print > "${builddir}/files.lst" tar cvf "${basedir}/install-${pg_major}.tar" `cat ${builddir}/files.lst`