Skip to content

Commit

Permalink
Replace for windows (#105)
Browse files Browse the repository at this point in the history
* Replace for windows

* SHA ovms
  • Loading branch information
rasapala authored Jan 21, 2025
1 parent 06c5895 commit 8a7fff7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ register_coreutils_toolchains()
git_repository(
name = "ovms",
remote = "https://github.com/openvinotoolkit/model_server",
commit = "a7c4ba3e010bf7c11df837785ee83a2cac3d5435", # OVMS 09/01/2025
commit = "4cb021763c2256bb93519000c83e7bed2775f077", # Cvs 154690 adjust demos to run on linux and windows (#2950) 20/01/2025
patches = [
"@//third_party:ovms_no_rerank_embed.patch", # TODO investigate why in MP repository bazel builds rerank/embed calcs with no mp option
# even when we have those set in .bazelrc here
Expand Down
1 change: 1 addition & 0 deletions third_party/model_api/model_api.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ def _impl(repository_ctx):

# Note we need to escape '{/}' by doubling them due to call to format
if _is_windows(repository_ctx):
openvino_dir = openvino_dir.replace("\\", "\\\\").replace("/", "\\\\")
build_file_content = _get_windows_build_file()
else:
build_file_content = _get_linux_build_file()
Expand Down

0 comments on commit 8a7fff7

Please sign in to comment.