Skip to content

Commit

Permalink
Removing caching on windows. (#7717)
Browse files Browse the repository at this point in the history
  • Loading branch information
mc-nv authored Oct 29, 2024
1 parent a434122 commit afe4270
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1679,7 +1679,9 @@ def create_docker_build_script(script_name, container_install_dir, container_ci_
if FLAGS.container_memory:
baseargs += ["--memory", FLAGS.container_memory]

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

baseargs += ["."]

docker_script.cwd(THIS_SCRIPT_DIR)
Expand Down

0 comments on commit afe4270

Please sign in to comment.