summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-07-17 00:09:20 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-07-17 00:09:55 +0200
commit88778d57b6e12d7d36ca9e5b03b20597ae9928ae (patch)
treebc34c1cddfc7d27c322b3d9edd1769f29246da84
parentaedeafb69356081fc9245d5e8613c5c660c37e79 (diff)
downloadpython-lxml-88778d57b6e12d7d36ca9e5b03b20597ae9928ae.tar.gz
Use ccache in CI builds.
-rw-r--r--tools/ci-run.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/ci-run.sh b/tools/ci-run.sh
index e4f9be99..9edc23a6 100644
--- a/tools/ci-run.sh
+++ b/tools/ci-run.sh
@@ -14,6 +14,7 @@ if [ -z "${OS_NAME##ubuntu*}" ]; then
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-$GCC_VERSION 60
export CC="gcc"
+ export PATH="/usr/lib/ccache:$PATH"
elif [ -z "${OS_NAME##macos*}" ]; then
export CC="clang -Wno-deprecated-declarations"