We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa252da commit fa99e45Copy full SHA for fa99e45
ci/test/02_run_container.sh
@@ -48,6 +48,14 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
48
CI_PREVIOUS_RELEASES_MOUNT="type=bind,src=${PREVIOUS_RELEASES_DIR},dst=$PREVIOUS_RELEASES_DIR"
49
fi
50
51
+ if [ "$DANGER_CI_ON_HOST_CCACHE_FOLDER" ]; then
52
+ if [ ! -d "${CCACHE_DIR}" ]; then
53
+ echo "Error: Directory '${CCACHE_DIR}' must be created in advance."
54
+ exit 1
55
+ fi
56
+ CI_CCACHE_MOUNT="type=bind,src=${CCACHE_DIR},dst=${CCACHE_DIR}"
57
58
+
59
docker network create --ipv6 --subnet 1111:1111::/112 ci-ip6net || true
60
61
if [ -n "${RESTART_CI_DOCKER_BEFORE_RUN}" ] ; then
0 commit comments