Skip to content

Commit ec19c6b

Browse files
Check OV release 2025.1
1 parent 6957a77 commit ec19c6b

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/test_openvino.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
pip install --upgrade pip
4545
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
4646
pip install .[openvino,openvino-tokenizers,diffusers,tests] transformers[testing]
47+
pip install --pre -U openvino openvino-tokenizers --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
48+
pip install git+https://github.com/openvinotoolkit/nncf.git@release_v2160
4749
4850
- if: ${{ matrix.transformers-version != 'latest' }}
4951
name: Install specific dependencies and versions required for older transformers
@@ -69,7 +71,7 @@ jobs:
6971
- if: ${{ matrix.test-pattern == '*modeling*' }}
7072
name: Install dependencies (nightly)
7173
run: |
72-
pip install --upgrade --pre openvino openvino-tokenizers --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
74+
pip install --upgrade --pre openvino openvino-tokenizers --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
7375
7476
- if: ${{ matrix.test-pattern == '*modeling*' }}
7577
name: Test with Pytest (nightly)

.github/workflows/test_openvino_full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ jobs:
6060
6161
- name: Install openvino-nightly
6262
if: ${{ matrix.openvino == 'ov-nightly' }}
63-
run: pip install --pre -U openvino openvino-tokenizers --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
63+
run: pip install --pre -U openvino openvino-tokenizers --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
6464

6565
- name: Install openvino release
6666
if: ${{ matrix.openvino == 'ov-stable' }}
6767
run: pip install .[openvino]
6868

6969
- name: Install nncf develop
7070
if: ${{ matrix.nncf == 'nncf-develop' }}
71-
run: pip install git+https://github.com/openvinotoolkit/nncf.git
71+
run: pip install git+https://github.com/openvinotoolkit/nncf.git@release_v2160
7272

7373
- name: Install nncf release
7474
if: ${{ matrix.nncf == 'nncf-stable' }}

.github/workflows/test_openvino_notebooks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ jobs:
4242
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
4343
pip install -r notebooks/openvino/requirements.txt
4444
pip install .[tests,openvino] nbval
45+
pip install --pre -U openvino openvino-tokenizers --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
46+
pip install git+https://github.com/openvinotoolkit/nncf.git@release_v2160
4547
4648
- name: Test with Pytest
4749
run: |

.github/workflows/test_openvino_slow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
pip install --upgrade pip
5151
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
5252
pip install .[openvino,tests] transformers[testing]
53+
pip install --pre -U openvino openvino-tokenizers --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
5354
pip uninstall -y nncf
5455
5556
- if: ${{ matrix.transformers-version != 'latest' && matrix.transformers-version != 'main' }}
@@ -74,7 +75,7 @@ jobs:
7475
7576
- name: Install dependencies (slow)
7677
run: |
77-
pip install .[nncf]
78+
pip install git+https://github.com/openvinotoolkit/nncf.git@release_v2160
7879
7980
- name: Test with Pytest (slow)
8081
run: |

0 commit comments

Comments
 (0)