From 5ca1e480402758c4ac70691d63868d2d93097586 Mon Sep 17 00:00:00 2001 From: Pierre Kancir Date: Mon, 25 Nov 2024 15:14:32 +0100 Subject: [PATCH] Tools: build_ci: use /tmp/pip-cache for cache --- Tools/scripts/build_ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/scripts/build_ci.sh b/Tools/scripts/build_ci.sh index 5872135233..460d0db00f 100755 --- a/Tools/scripts/build_ci.sh +++ b/Tools/scripts/build_ci.sh @@ -62,7 +62,7 @@ function install_mavproxy() { popd mavproxy_installed=1 # now uninstall the version of pymavlink pulled in by MAVProxy deps: - python3 -m pip uninstall -y pymavlink + python3 -m pip uninstall -y pymavlink --cache-dir /tmp/pip-cache fi }