Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ FUZZER_BUILD ?= 0
# NOTE: when changing any value below, you'll need to adjust WORKSPACE file by hand:
# - uncomment source build section, comment binary section
# - adjust binary version path - version variable is not passed to WORKSPACE file!
OV_SOURCE_BRANCH ?= 71b56616e5d2214521196b0ba0e62fbe81c596e9 # master 2025/08/25
OV_SOURCE_BRANCH ?= adf71207e69b43567397dabe6453bd4f4dda4f67 # dev/add-signature-property-and-use-in-hash-computation
OV_CONTRIB_BRANCH ?= c39462ca8d7c550266dc70cdbfbe4fc8c5be0677 # master / 2024-10-31
OV_TOKENIZERS_BRANCH ?= 0c1d501ac1c78de70574355640fb5e02caa4e93a # master 2025/08/25

OV_SOURCE_ORG ?= openvinotoolkit
OV_SOURCE_ORG ?= Quallyjiang
OV_CONTRIB_ORG ?= openvinotoolkit

TEST_LLM_PATH ?= "src/test/llm_testing"
Expand Down
2 changes: 1 addition & 1 deletion ci/build_test_OnCommit.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ pipeline {
sh "echo build --remote_cache=${env.OVMS_BAZEL_REMOTE_CACHE_URL} > .user.bazelrc"
sh "echo test:linux --test_env https_proxy=${env.HTTPS_PROXY} >> .user.bazelrc"
sh "echo test:linux --test_env http_proxy=${env.HTTP_PROXY} >> .user.bazelrc"
sh "make ovms_builder_image RUN_TESTS=0 OPTIMIZE_BUILDING_TESTS=1 OV_USE_BINARY=1 BASE_OS=redhat OVMS_CPP_IMAGE_TAG=${shortCommit} BUILD_IMAGE=openvino/model_server-build:${shortCommit}"
sh "make ovms_builder_image RUN_TESTS=0 OPTIMIZE_BUILDING_TESTS=1 OV_USE_BINARY=0 BASE_OS=redhat OVMS_CPP_IMAGE_TAG=${shortCommit} BUILD_IMAGE=openvino/model_server-build:${shortCommit}"
}
}
stage('Build windows') {
Expand Down
4 changes: 2 additions & 2 deletions third_party/llm_engine/llm_engine.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def llm_engine():
llm_engine_repository(name="_llm_engine")
new_git_repository(
name = "llm_engine",
remote = "https://github.com/openvinotoolkit/openvino.genai",
commit = "9eaf7891e487cfda8b2849cb596a68455ba4bcad", # master 2025-08-25
remote = "https://github.com/Quallyjiang/openvino.genai",
commit = "ec7d1312fcf173584cfd925f8281673f22be69c5", # master 2025-08-25
build_file = "@_llm_engine//:BUILD",
init_submodules = True,
recursive_init_submodules = True,
Expand Down