From: Justin Pryzby Date: Tue, 19 Jul 2022 12:38:45 -0500 Subject: [PATCH 24/25] cirrus/warnings: use ./configure cache in headerscheck.. This is desirable since since configure is slow. It's necessary for the environment variables to match, so disable ccache a different way. ci-os-only: warnings --- .cirrus.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 0421d56ca70..81822c58bec 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -627,11 +627,13 @@ task: ### always: headers_headerscheck_script: | + export CCACHE_DISABLE=1 time ./configure \ + --cache gcc.cache \ ${LINUX_CONFIGURE_FEATURES} \ --without-icu \ --quiet \ - CC="gcc" CXX"=g++" CLANG="clang" + CC="ccache gcc" CXX="ccache g++" CLANG="ccache clang" make -s -j${BUILD_JOBS} clean time make -s headerscheck EXTRAFLAGS='-fmax-errors=10' headers_cpluspluscheck_script: | -- 2.17.1 --IS0zKkzwUGydFO0o Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0025-cirrus-warnings-move-use-a-single-common-always-bloc.patch"