From 7717574d0046d279ec197ff368253c953b565e66 Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Thu, 11 Jun 2020 16:26:31 +0200 Subject: [PATCH] Bump Windows cache (#6310) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We are seeing ERROR: D:/a/2/s/compiler/scenario-service/protos/BUILD.bazel:67:1: output 'compiler/scenario-service/protos/_obj/scenario_service_haskell_proto/ScenarioService.o' was not created again so following our experiments, let’s reset the cache to see if it fixes anything. changelog_begin changelog_end --- ci/configure-bazel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/configure-bazel.sh b/ci/configure-bazel.sh index cb4daca4e4..779145d13e 100755 --- a/ci/configure-bazel.sh +++ b/ci/configure-bazel.sh @@ -74,7 +74,7 @@ if is_windows; then SUFFIX="${SUFFIX:0:3}" echo "Platform suffix: $SUFFIX" # We include an extra version at the end that we can bump manually. - CACHE_SUFFIX="$SUFFIX-v1" + CACHE_SUFFIX="$SUFFIX-v2" CACHE_URL="$CACHE_URL/$CACHE_SUFFIX" echo "build:windows-ci --remote_http_cache=https://bazel-cache.da-ext.net/$CACHE_SUFFIX" >> .bazelrc.local fi