Skip to content

Commit 2b14286

Browse files
committed
update .gitignore, install numpy
1 parent 8025554 commit 2b14286

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/genai_lib.yml

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- run: sudo ./ov/install_dependencies/install_openvino_dependencies.sh
1616
- run: source ./ov/setupvars.sh && cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
1717
- run: source ./ov/setupvars.sh && cmake --build ./build/ -j
18+
- run: python -m pip install numpy<1.27
1819
- run: source ./ov/setupvars.sh && PYTHONPATH=./src/python:$PYTHONPATH python -c "from openvino.genai.py_generate_pipeline import LLMPipeline"
1920
- run: source ./ov/setupvars.sh && python -m pip install --pre . --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
2021
- run: python -c "from openvino.genai.py_generate_pipeline import LLMPipeline"
@@ -35,6 +36,7 @@ jobs:
3536
- run: unzip ov.zip
3637
- run: call w_openvino_toolkit_windows_2024.1.0.dev20240304_x86_64\setupvars.bat && cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
3738
- run: call w_openvino_toolkit_windows_2024.1.0.dev20240304_x86_64\setupvars.bat && cmake --build ./build/ -j
39+
- run: python -m pip install numpy<1.27
3840
- run: call w_openvino_toolkit_windows_2024.1.0.dev20240304_x86_64\setupvars.bat && set PYTHONPATH=./src/python:$PYTHONPATH && python -c "from openvino.genai.py_generate_pipeline import LLMPipeline"
3941
- run: call w_openvino_toolkit_windows_2024.1.0.dev20240304_x86_64\setupvars.bat && python -m pip install .
4042
- run: python -c "from openvino.genai.py_generate_pipeline import LLMPipeline"

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# They are copied to python folder during the build to allow skipping wheel installation
2+
src/python/openvino/genai/*generate_pipeline_lib*
3+
src/python/openvino/genai/py_generate_pipeline*
4+
15
# build/artifact dirs
26
_*
37
[Bb]uild*/

0 commit comments

Comments
 (0)