Skip to content

Commit fa9747a

Browse files
author
MarcoFalke
committed
ci: Temporary workaround for old CCACHE_DIR cirrus env
1 parent d94adc7 commit fa9747a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci/test/02_run_container.sh

+5
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,16 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
5959
fi
6060

6161
if [ "$DANGER_CI_ON_HOST_CCACHE_FOLDER" ]; then
62+
# Temporary exclusion for https://github.com/bitcoin/bitcoin/issues/31108
63+
# to allow CI configs and envs generated in the past to work for a bit longer.
64+
# Can be removed in March 2025.
65+
if [ "${CCACHE_DIR}" != "/tmp/ccache_dir" ]; then
6266
if [ ! -d "${CCACHE_DIR}" ]; then
6367
echo "Error: Directory '${CCACHE_DIR}' must be created in advance."
6468
exit 1
6569
fi
6670
CI_CCACHE_MOUNT="type=bind,src=${CCACHE_DIR},dst=${CCACHE_DIR}"
71+
fi # End temporary exclusion
6772
fi
6873

6974
docker network create --ipv6 --subnet 1111:1111::/112 ci-ip6net || true

0 commit comments

Comments
 (0)