Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/arm64' into arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed Oct 10, 2023
2 parents 34686aa + d0dbcd3 commit 251386e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
# default-jdk - Java API
# libssl1.1 - 'python3 -m pip' in self-hosted runner
apt install --assume-yes --no-install-recommends default-jdk libssl1.1
apt install libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
apt-get update -y
apt-get install openvino -y
# install python3.9
apt install libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
python3.9 -m pip install numpy
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:

- name: Setup pip cache dir
run: |
apt install libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -420,7 +420,7 @@ jobs:
# Needed for downloading IRs from storage.openvinotoolkit with Python urllib
apt-get install --assume-yes --no-install-recommends ca-certificates
apt install libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
python3.9 -m pip install -r ${CONFORMANCE_TOOLS_DIR}/requirements.txt
Expand Down Expand Up @@ -829,7 +829,7 @@ jobs:

- name: Setup pip cache dir
run: |
apt install libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -1094,7 +1094,7 @@ jobs:

- name: Install python dependencies for run_parallel.py
run: |
apt install libpython3.9 python3.9
apt install --assume-yes libpython3.9 python3.9
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
python3.9 -m pip install -r ${INSTALL_TEST_DIR}/functional_test_utils/layer_tests_summary/requirements.txt
Expand Down Expand Up @@ -1159,7 +1159,7 @@ jobs:

- name: Install python
run: |
sudo apt install libpython3.9 python3.9
sudo apt install --assume-yes libpython3.9 python3.9
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -1240,7 +1240,7 @@ jobs:

- name: Install dependencies
run: |
sudo apt install libpython3.9 python3.9 python3.9-dev
sudo apt install --assume-yes libpython3.9 python3.9 python3.9-dev
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
# install git (required to build pip deps from the sources)
Expand Down
3 changes: 0 additions & 3 deletions install_build_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,6 @@ else
echo "Unknown OS, please install build dependencies manually"
fi

# update pip
python3 -m pip install -U pip

# cmake 3.20.0 or higher is required to build OpenVINO

if command -v cmake &> /dev/null; then
Expand Down

0 comments on commit 251386e

Please sign in to comment.