Skip to content

Commit aee2c90

Browse files
committed
init
1 parent b3777a2 commit aee2c90

File tree

6 files changed

+20
-27
lines changed

6 files changed

+20
-27
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ FUZZER_BUILD ?= 0
7474
# NOTE: when changing any value below, you'll need to adjust WORKSPACE file by hand:
7575
# - uncomment source build section, comment binary section
7676
# - adjust binary version path - version variable is not passed to WORKSPACE file!
77-
OV_SOURCE_BRANCH ?= c01cd93e24d1cd78bfbb401eed51c08fb93e0816 # releases/2025/2 RC4
77+
OV_SOURCE_BRANCH ?= 4901007b45f97432527e81c7bc5b122b7e641b56 # master 2025-06-19
7878
OV_CONTRIB_BRANCH ?= c39462ca8d7c550266dc70cdbfbe4fc8c5be0677 # master / 2024-10-31
79-
OV_TOKENIZERS_BRANCH ?= 85be884a69f10270703f81f970a5ee596a4c8df7 # releases/2025/2 RC4
79+
OV_TOKENIZERS_BRANCH ?= ad1d5550bb726aeb296c4bd964f477ffd9b77247 # master 2025-05-26
8080

8181
OV_SOURCE_ORG ?= openvinotoolkit
8282
OV_CONTRIB_ORG ?= openvinotoolkit
@@ -161,11 +161,11 @@ ifeq ($(findstring ubuntu,$(BASE_OS)),ubuntu)
161161
ifeq ($(BASE_OS_TAG),24.04)
162162
OS=ubuntu24
163163
INSTALL_DRIVER_VERSION ?= "24.52.32224"
164-
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.2/linux/openvino_toolkit_ubuntu24_2025.2.0.19140.c01cd93e24d_x86_64.tgz
164+
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2025.3.0-19325-4901007b45f/openvino_toolkit_ubuntu24_2025.3.0.dev20250619_x86_64.tgz
165165
else ifeq ($(BASE_OS_TAG),22.04)
166166
OS=ubuntu22
167167
INSTALL_DRIVER_VERSION ?= "24.39.31294"
168-
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.2/linux/openvino_toolkit_ubuntu22_2025.2.0.19140.c01cd93e24d_x86_64.tgz
168+
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2025.3.0-19325-4901007b45f/openvino_toolkit_ubuntu22_2025.3.0.dev20250619_x86_64.tgz
169169
endif
170170
endif
171171
ifeq ($(BASE_OS),redhat)
@@ -174,7 +174,7 @@ ifeq ($(BASE_OS),redhat)
174174
BASE_IMAGE ?= registry.access.redhat.com/ubi9/ubi:$(BASE_OS_TAG_REDHAT)
175175
BASE_IMAGE_RELEASE=registry.access.redhat.com/ubi9/ubi-minimal:$(BASE_OS_TAG_REDHAT)
176176
DIST_OS=redhat
177-
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.2/linux/openvino_toolkit_rhel8_2025.2.0.19140.c01cd93e24d_x86_64.tgz
177+
DLDT_PACKAGE_URL ?= https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2025.3.0-19325-4901007b45f/openvino_toolkit_rhel8_2025.3.0.dev20250619_x86_64.tgz
178178
INSTALL_DRIVER_VERSION ?= "24.52.32224"
179179
endif
180180

demos/common/export_models/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
--pre
55
optimum-intel@git+https://github.com/huggingface/optimum-intel.git@3b2cffb40c3de6bd3bf90c1e8a98d902e87db80d
66
openvino-tokenizers==2025.2.0.0rc3
7-
openvino==2025.2.0rc3
7+
openvino<=2025.3.0.dev20250619
88
nncf>=2.11.0
99
sentence_transformers
1010
sentencepiece==0.2.0

third_party/llm_engine/llm_engine.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def llm_engine():
2424
new_git_repository(
2525
name = "llm_engine",
2626
remote = "https://github.com/openvinotoolkit/openvino.genai",
27-
commit = "01f0fe1eded5934871fef866ed217a60fa2c6049", # releases/2025/2 RC3
27+
commit = "14c2549ce2bb50ab63139c44a29d8df36101cbca", # master 2025-06-19
2828
build_file = "@_llm_engine//:BUILD",
2929
init_submodules = True,
3030
recursive_init_submodules = True,
File renamed without changes.

utils/update_ov.py renamed to tools/update_ov/update_ov.py

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
from selenium.webdriver.support.ui import WebDriverWait
4141
from selenium.webdriver.support import expected_conditions as EC
4242
import re
43+
import os
4344

4445
### OpenVINO Part ###
4546
def update_openvino():
@@ -230,7 +231,11 @@ def update_openvino_genai():
230231
tokenizers_commit = None
231232
tokenizers_commit_date = None
232233
api_url = f"https://api.github.com/repos/openvinotoolkit/openvino.genai/git/trees/{commit}?recursive=1"
233-
response = requests.get(api_url)
234+
github_token = os.environ.get("GITHUB_TOKEN")
235+
headers = {}
236+
if github_token:
237+
headers["Authorization"] = f"Bearer {github_token}"
238+
response = requests.get(api_url, headers=headers)
234239
if response.status_code == 200:
235240
data = response.json()
236241
submodules = [item for item in data['tree'] if item['type'] == 'commit']
@@ -241,7 +246,7 @@ def update_openvino_genai():
241246

242247
# Fetch the commit date
243248
commit_url = f"https://api.github.com/repos/openvinotoolkit/openvino_tokenizers/commits/{tokenizers_commit}"
244-
commit_response = requests.get(commit_url)
249+
commit_response = requests.get(commit_url, headers=headers)
245250
if commit_response.status_code == 200:
246251
commit_data = commit_response.json()
247252
commit_date_str = commit_data['commit']['committer']['date']
@@ -308,10 +313,7 @@ def update_openvino_genai():
308313
# Find a link ending with ".zip" in package_links
309314
zip_link = next((link for link in package_links if link.endswith('.zip')), None)
310315

311-
if zip_link:
312-
# Break the link into two variables
313-
before_last_slash, after_last_slash = zip_link.rsplit('/', 1)
314-
else:
316+
if not zip_link:
315317
raise Exception("No .zip link found in package_links.")
316318

317319
# Update windows_install_build_dependencies.bat with new GenAI package link
@@ -321,19 +323,10 @@ def update_openvino_genai():
321323
new_win_build_bat_content = []
322324

323325
for line in win_build_bat_content:
324-
if 'set "genai_dir=' in line:
325-
print("Updating genai_dir in windows_install_build_dependencies.bat")
326-
new_line = f'set "genai_dir={after_last_slash[:-4]}"\n'
327-
print(new_line)
328-
new_win_build_bat_content.append(new_line)
329-
elif 'set "genai_ver=' in line:
330-
print("Updating genai_ver in windows_install_build_dependencies.bat")
331-
new_line = f'set "genai_ver={after_last_slash}"\n'
332-
print(new_line)
333-
new_win_build_bat_content.append(new_line)
334-
elif 'set "genai_http=' in line:
335-
print("Updating genai_http in windows_install_build_dependencies.bat")
336-
new_line = f'set "genai_http={before_last_slash}/"\n'
326+
if 'set "GENAI_PACKAGE_URL=' in line:
327+
print("Updating GENAI_PACKAGE_URL in windows_install_build_dependencies.bat")
328+
indentation = line[:line.index('set "GENAI_PACKAGE_URL=')]
329+
new_line = f'{indentation}set "GENAI_PACKAGE_URL={zip_link}"\n'
337330
print(new_line)
338331
new_win_build_bat_content.append(new_line)
339332
else:

windows_install_build_dependencies.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ IF /I EXIST %bash_path% (
126126
::::::::::::::::::::::: GENAI/OPENVINO - reinstalled per build trigger
127127
:: Set default GENAI_PACKAGE_URL if not set
128128
if "%GENAI_PACKAGE_URL%"=="" (
129-
set "GENAI_PACKAGE_URL=https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/2025.2/windows/openvino_genai_windows_2025.2.0.0_x86_64.zip"
129+
set "GENAI_PACKAGE_URL=https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2025.3.0.0.dev20250619/openvino_genai_windows_2025.3.0.0.dev20250619_x86_64.zip"
130130
)
131131

132132
:: Extract genai_ver from GENAI_PACKAGE_URL (filename)

0 commit comments

Comments
 (0)