Skip to content

Commit 09ead55

Browse files
authored
Update CI to run OV dep install before build
1 parent 89b8212 commit 09ead55

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.github/actions/linux-setup-openvino/action.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,3 @@ runs:
2323
type: z
2424
strip: 1
2525

26-
- name: Install OpenVINO dependencies
27-
shell: bash
28-
run: |
29-
cd ${{ inputs.path }}
30-
echo "Y" | sudo -E ./install_dependencies/install_openvino_dependencies.sh

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,12 @@ jobs:
740740
version_major: ${{ env.OPENVINO_VERSION_MAJOR }}
741741
version_full: ${{ env.OPENVINO_VERSION_FULL }}
742742

743+
- name: Install OpenVINO dependencies
744+
run: |
745+
cd ./openvino_toolkit
746+
chmod +x ./install_dependencies/install_openvino_dependencies.sh
747+
echo "Y" | sudo -E ./install_dependencies/install_openvino_dependencies.sh
748+
743749
- name: Build
744750
id: cmake_build
745751
run: |

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,12 @@ jobs:
282282
version_major: ${{ env.OPENVINO_VERSION_MAJOR }}
283283
version_full: ${{ env.OPENVINO_VERSION_FULL }}
284284

285+
- name: Install OpenVINO dependencies
286+
run: |
287+
cd ./openvino_toolkit
288+
chmod +x ./install_dependencies/install_openvino_dependencies.sh
289+
echo "Y" | sudo -E ./install_dependencies/install_openvino_dependencies.sh
290+
285291
- name: Build
286292
id: cmake_build
287293
run: |

0 commit comments

Comments
 (0)