Skip to content

Commit afe4270

Browse files
authored
Removing caching on windows. (#7717)
1 parent a434122 commit afe4270

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,9 @@ def create_docker_build_script(script_name, container_install_dir, container_ci_
16791679
if FLAGS.container_memory:
16801680
baseargs += ["--memory", FLAGS.container_memory]
16811681

1682-
baseargs += ["--cache-from={}".format(k) for k in cachefrommap]
1682+
if target_platform() != "windows":
1683+
baseargs += ["--cache-from={}".format(k) for k in cachefrommap]
1684+
16831685
baseargs += ["."]
16841686

16851687
docker_script.cwd(THIS_SCRIPT_DIR)

0 commit comments

Comments
 (0)