We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d94adc7 commit fa9747aCopy full SHA for fa9747a
ci/test/02_run_container.sh
@@ -59,11 +59,16 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
59
fi
60
61
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
66
if [ ! -d "${CCACHE_DIR}" ]; then
67
echo "Error: Directory '${CCACHE_DIR}' must be created in advance."
68
exit 1
69
70
CI_CCACHE_MOUNT="type=bind,src=${CCACHE_DIR},dst=${CCACHE_DIR}"
71
+ fi # End temporary exclusion
72
73
74
docker network create --ipv6 --subnet 1111:1111::/112 ci-ip6net || true
0 commit comments