From 450b6f7e912e147fcf5f477d837243d49d5782e3 Mon Sep 17 00:00:00 2001 From: Vladimir Zlobin Date: Fri, 4 Oct 2024 12:44:11 +0400 Subject: [PATCH] cmd --- .github/workflows/causal_lm_cpp.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/causal_lm_cpp.yml b/.github/workflows/causal_lm_cpp.yml index 5ebc3d912f..9c788da1b0 100644 --- a/.github/workflows/causal_lm_cpp.yml +++ b/.github/workflows/causal_lm_cpp.yml @@ -697,11 +697,15 @@ jobs: - run: curl ${{ env.w_ov_link }} --output ov.zip - run: unzip -d ov ov.zip - run: dirs=(ov/*) && mv ov/*/* ov && rmdir "${dirs[@]}" + shell: cmd - run: cmake -DOpenVINO_DIR=./ov/runtime/cmake -B ./build/ ./ - run: cmake --build ./build/ --config Release -j - run: python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --pre --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly - run: python -m pip install --upgrade-strategy eager -r ./samples/requirements.txt --pre --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly - - run: OPENVINO_LIB_PATHS=./ov/python ./samples/cpp/visual_language_chat/export_MiniCPM-V-2_6.py ./miniCPM-V-2_6/ + - run: > + set PATH=./ov/python:%PATH% + && set OPENVINO_LIB_PATHS=./ov/runtime/3rdparty/tbb/bin:./ov/runtime/bin/intel64/Release + && python ./samples/cpp/visual_language_chat/export_MiniCPM-V-2_6.py ./miniCPM-V-2_6/ - run: wget https://github.com/openvinotoolkit/openvino_notebooks/assets/29454499/d5fbbd1a-d484-415c-88cb-9986625b7b11 - name: Run chat sample run: |