@@ -15,12 +15,11 @@ jobs:
15
15
- run : sudo ./ov/install_dependencies/install_openvino_dependencies.sh
16
16
- run : source ./ov/setupvars.sh && cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
17
17
- run : source ./ov/setupvars.sh && cmake --build ./build/ --config Release -j
18
- - run : python -m pip install --pre openvino --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly # Can't load CentOS libraries from the archive
19
18
# GitHub Actions already provides what is listed in ./requirements-build.txt but the internal
20
19
# build system doesn't. Install ./requirements-build.txt to detect possible conflicts.
21
- - run : source ./ov/setupvars.sh && python -m pip install ./thirdparty/openvino_tokenizers/[transformers] -r ./requirements-build.txt
20
+ - run : source ./ov/setupvars.sh && python -m pip install ./thirdparty/openvino_tokenizers/[transformers] -r ./requirements-build.txt --pre --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
22
21
- run : PYTHONPATH=./src/python/ python -c "from openvino_genai import LLMPipeline"
23
- - run : source ./ov/setupvars.sh && CMAKE_BUILD_PARALLEL_LEVEL="" python -m pip install --pre . --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
22
+ - run : source ./ov/setupvars.sh && CMAKE_BUILD_PARALLEL_LEVEL="" python -m pip install .
24
23
- run : python -c "from openvino_genai import LLMPipeline"
25
24
- name : GenAI Python API tests
26
25
run : |
49
48
- run : unzip ov.zip
50
49
- run : call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
51
50
- run : call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && cmake --build ./build/ --config Release -j
52
- - run : python -m pip install "numpy<1.27"
53
51
# GitHub Actions already provides what is listed in ./requirements-build.txt but the internal
54
52
# build system doesn't. Install ./requirements-build.txt to detect possible conflicts.
55
- - run : call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && python -m pip install ./thirdparty/openvino_tokenizers/[transformers] -r ./requirements-build.txt
53
+ - run : call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && python -m pip install ./thirdparty/openvino_tokenizers/[transformers] -r ./requirements-build.txt --pre --extra-index-url https://storage.openvinotoolkit.org/
56
54
- run : set "PYTHONPATH=./src/python;" && call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && python -c "from openvino_genai import LLMPipeline" # cmd evaluates variables in a different way. Setting PYTHONPATH before setupvars.bat instead of doing that after solves that.
57
55
- run : set CMAKE_BUILD_PARALLEL_LEVEL=&& call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && python -m pip install .
58
56
- run : python -c "from openvino_genai import LLMPipeline"
0 commit comments