@@ -17,8 +17,8 @@ concurrency:
17
17
18
18
env :
19
19
PYTHON_VERSION : ' 3.10'
20
- OV_BRANCH : ' master '
21
- OV_TARBALL : ' '
20
+ OV_BRANCH : ' releases/2025/0 '
21
+ OV_TARBALL : ' https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2025.0.0rc1/m_openvino_toolkit_macos_12_6_2025.0.0.dev20250116_x86_64.tgz '
22
22
23
23
jobs :
24
24
openvino_download :
@@ -224,17 +224,17 @@ jobs:
224
224
- name : Test bindings
225
225
run : |
226
226
source ${OV_INSTALL_DIR}/setupvars.sh
227
- python -m pip install ./thirdparty/openvino_tokenizers/[transformers] -r ./tests/python_tests/requirements.txt --find-links ${OV_INSTALL_DIR}/ wheels
227
+ python -m pip install ./thirdparty/openvino_tokenizers/[transformers] -r ./tests/python_tests/requirements.txt --extra-index-url https://storage.openvinotoolkit.org/simple/ wheels/pre-release
228
228
python -m pytest -v ./tests/python_tests/test_tokenizer.py::test_set_chat_template
229
229
env :
230
230
PYTHONPATH : " ./build/:$PYTHONPATH"
231
231
232
232
- name : Test bindings (wheel)
233
233
run : |
234
234
source ${OV_INSTALL_DIR}/setupvars.sh
235
- python -m pip install . --verbose --find-links ${OV_INSTALL_DIR}/ wheels
235
+ python -m pip install . --verbose --extra-index-url https://storage.openvinotoolkit.org/simple/ wheels/pre-release
236
236
python -c "from openvino_genai import LLMPipeline"
237
- python -m pip install ./tools/who_what_benchmark --find-links ${OV_INSTALL_DIR}/ wheels
237
+ python -m pip install ./tools/who_what_benchmark --extra-index-url https://storage.openvinotoolkit.org/simple/ wheels/pre-release
238
238
python -m pytest -v ./tests/python_tests/ --ignore ./tests/python_tests/test_whisper_pipeline.py --ignore ./tests/python_tests/test_vlm_pipeline.py -k "not test_set_chat_template"
239
239
240
240
genai_python_lib_whisper :
@@ -289,17 +289,17 @@ jobs:
289
289
- name : Test bindings
290
290
run : |
291
291
source ${OV_INSTALL_DIR}/setupvars.sh
292
- python -m pip install ./thirdparty/openvino_tokenizers/[transformers] -r ./tests/python_tests/requirements.txt --find-links ${OV_INSTALL_DIR}/ wheels
292
+ python -m pip install ./thirdparty/openvino_tokenizers/[transformers] -r ./tests/python_tests/requirements.txt --extra-index-url https://storage.openvinotoolkit.org/simple/ wheels/pre-release
293
293
python -m pytest -v ./tests/python_tests/test_whisper_pipeline.py -k test_smoke
294
294
env :
295
295
PYTHONPATH : " ./build/:$PYTHONPATH"
296
296
297
297
- name : Test bindings (wheel)
298
298
run : |
299
299
source ${OV_INSTALL_DIR}/setupvars.sh
300
- python -m pip install . --verbose --find-links ${OV_INSTALL_DIR}/ wheels
300
+ python -m pip install . --verbose --extra-index-url https://storage.openvinotoolkit.org/simple/ wheels/pre-release
301
301
python -c "from openvino_genai import LLMPipeline"
302
- python -m pip install ./tools/who_what_benchmark --find-links ${OV_INSTALL_DIR}/ wheels
302
+ python -m pip install ./tools/who_what_benchmark --extra-index-url https://storage.openvinotoolkit.org/simple/ wheels/pre-release
303
303
python -m pytest -v ./tests/python_tests/test_whisper_pipeline.py -k "not test_smoke"
304
304
305
305
genai_package :
@@ -355,8 +355,8 @@ jobs:
355
355
- name : Build and Install dependencies
356
356
run : |
357
357
source ${OV_INSTALL_DIR}/setupvars.sh
358
- python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --find-links ${OV_INSTALL_DIR}/ wheels
359
- python -m pip install -r ./samples/requirements.txt --find-links ${OV_INSTALL_DIR}/ wheels
358
+ python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/ wheels/pre-release
359
+ python -m pip install -r ./samples/requirements.txt --extra-index-url https://storage.openvinotoolkit.org/simple/ wheels/pre-release
360
360
optimum-cli export openvino --trust-remote-code --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
361
361
optimum-cli export openvino --trust-remote-code --model openai/whisper-tiny whisper-tiny
362
362
0 commit comments