Skip to content

Commit fc5b753

Browse files
committed
install openvino
1 parent e23a7bb commit fc5b753

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/genai_lib.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ jobs:
1010
- uses: actions/setup-python@v4
1111
with:
1212
python-version: 3.8
13+
- name: Install OpenVINO
14+
run: |
15+
mkdir ./ov/
16+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2024.1.0-14645-e6dc0865128/l_openvino_toolkit_ubuntu20_2024.1.0.dev20240304_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
17+
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
1318
- run: python -m pip install scikit-build
14-
- run: python -m pip install .
19+
- run: source ./ov/setupvars.sh && python -m pip install .
1520
- run: python -c "from openvino.genai.py_generate_pipeline import LLMPipeline"

0 commit comments

Comments
 (0)