diff --git a/.github/actions/linux-setup-openvino/action.yml b/.github/actions/linux-setup-openvino/action.yml index 7cd136548f..46a659a827 100644 --- a/.github/actions/linux-setup-openvino/action.yml +++ b/.github/actions/linux-setup-openvino/action.yml @@ -23,8 +23,3 @@ runs: type: z strip: 1 - - name: Install OpenVINO dependencies - shell: bash - run: | - cd ${{ inputs.path }} - echo "Y" | sudo -E ./install_dependencies/install_openvino_dependencies.sh diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 06d6105a8d..a0be0c704b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -777,6 +777,12 @@ jobs: version_major: ${{ env.OPENVINO_VERSION_MAJOR }} version_full: ${{ env.OPENVINO_VERSION_FULL }} + - name: Install OpenVINO dependencies + run: | + cd ./openvino_toolkit + chmod +x ./install_dependencies/install_openvino_dependencies.sh + echo "Y" | sudo -E ./install_dependencies/install_openvino_dependencies.sh + - name: Build id: cmake_build run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 25ac9ed156..638ae9f056 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -272,6 +272,12 @@ jobs: version_major: ${{ env.OPENVINO_VERSION_MAJOR }} version_full: ${{ env.OPENVINO_VERSION_FULL }} + - name: Install OpenVINO dependencies + run: | + cd ./openvino_toolkit + chmod +x ./install_dependencies/install_openvino_dependencies.sh + echo "Y" | sudo -E ./install_dependencies/install_openvino_dependencies.sh + - name: Build id: cmake_build run: |