Skip to content

Commit

Permalink
Add apt update (openvinotoolkit#7483)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgenytalanin-intel authored and akuporos committed Sep 29, 2021
1 parent 257c4b0 commit d9271eb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:

- name: Install dependencies
run: |
sudo apt update
sudo apt --assume-yes install libusb-1.0-0-dev graphviz texlive
python3 -m pip install lxml
# install doxygen
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/code_style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ jobs:
submodules: recursive

- name: Install clang-format-9
run: sudo apt --assume-yes install clang-format-9
run: |
sudo apt update
sudo apt --assume-yes install clang-format-9
- name: Install dependencies
run: |
sudo apt update
sudo apt --assume-yes install libusb-1.0-0-dev
python3 -m pip install --upgrade pip
python3 -m pip install -r ./inference-engine/ie_bridges/python/requirements.txt
Expand Down Expand Up @@ -52,7 +55,9 @@ jobs:
submodules: recursive

- name: Install ShellCheck
run: sudo apt --assume-yes install shellcheck
run: |
sudo apt update
sudo apt --assume-yes install shellcheck
- name: Install dependencies
run: python3 -m pip install -r ./inference-engine/ie_bridges/python/requirements.txt
Expand All @@ -75,7 +80,9 @@ jobs:
submodules: recursive

- name: Install Clang dependency
run: sudo apt --assume-yes install libclang-9-dev
run: |
sudo apt update
sudo apt --assume-yes install libclang-9-dev
- name: Install Python-based dependencies
run: python3 -m pip install -r cmake/developer_package/ncc_naming_style/requirements_dev.txt
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/mo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
pip install -r requirements.txt
pip install -r requirements_dev.txt
# requrements for CMake
sudo apt update
sudo apt --assume-yes install libusb-1.0-0-dev
working-directory: model-optimizer

Expand Down

0 comments on commit d9271eb

Please sign in to comment.