From 7c07136a882f2fbb948500a1d3abc0e0738337c0 Mon Sep 17 00:00:00 2001 From: Pavel Esir Date: Fri, 7 Jun 2024 17:50:54 +0200 Subject: [PATCH] disable failing win workflows --- .github/workflows/causal_lm_cpp.yml | 1 + .github/workflows/genai_package.yml | 10 +++++----- .github/workflows/genai_python_lib.yml | 1 + 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/causal_lm_cpp.yml b/.github/workflows/causal_lm_cpp.yml index fdaba8c308..57f7924cce 100644 --- a/.github/workflows/causal_lm_cpp.yml +++ b/.github/workflows/causal_lm_cpp.yml @@ -167,6 +167,7 @@ jobs: " echo "Multi prompt" passed cpp-beam_search_causal_lm-windows: + if: false runs-on: windows-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/genai_package.yml b/.github/workflows/genai_package.yml index c0cd0d5cd4..1cb6d5d142 100644 --- a/.github/workflows/genai_package.yml +++ b/.github/workflows/genai_package.yml @@ -87,12 +87,12 @@ jobs: - run: call ov\setupvars.bat && cmake --build ./build/ --config ${{ matrix.build-type }} --target package -j - run: call ov\setupvars.bat && cmake --install ./build/ --config ${{ matrix.build-type }} --prefix ov - run: call ov\samples\cpp\build_samples_msvc.bat -i "${{ github.workspace }}/samples_install" - if: ${{ 'Release' == matrix.build-type }} # build_samples enforces Release build + if: ${{ false && 'Release' == matrix.build-type }} # build_samples enforces Release build - run: call ov\setupvars.bat && python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release - if: ${{ 'Release' == matrix.build-type }} + if: ${{ false && 'Release' == matrix.build-type }} - run: call ov\setupvars.bat && python -m pip install --upgrade-strategy eager -r ./samples/cpp/requirements.txt - if: ${{ 'Release' == matrix.build-type }} + if: ${{ false && 'Release' == matrix.build-type }} - run: call ov\setupvars.bat && optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0 - if: ${{ 'Release' == matrix.build-type }} + if: ${{ false && 'Release' == matrix.build-type }} - run: call ov\setupvars.bat && "${{ github.workspace }}/samples_install/samples_bin/greedy_causal_lm" .\TinyLlama-1.1B-Chat-v1.0\ "" - if: ${{ 'Release' == matrix.build-type }} + if: ${{ false && 'Release' == matrix.build-type }} diff --git a/.github/workflows/genai_python_lib.yml b/.github/workflows/genai_python_lib.yml index 4ac8c9d14a..4d43f53e8d 100644 --- a/.github/workflows/genai_python_lib.yml +++ b/.github/workflows/genai_python_lib.yml @@ -58,6 +58,7 @@ jobs: - run: python -m pytest ./tests/python_tests/test_generate_api.py -m precommit windows_genai_python_lib: + if: false runs-on: windows-latest env: CMAKE_BUILD_PARALLEL_LEVEL: null