Skip to content

Commit aeefcfb

Browse files
committed
Revert changes in GHA
1 parent d00090e commit aeefcfb

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/job_onnx_models_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: Install dependencies
8383
run: |
8484
# install git (required to build pip deps from the sources)
85-
apt-get update && apt-get install --assume-yes --no-install-recommends git ca-certificates git-lfs ocl-icd-libopencl1
85+
apt-get update && apt-get install --assume-yes --no-install-recommends git ca-certificates git-lfs
8686
8787
- name: Setup Python 3.11
8888
uses: ./openvino/.github/actions/setup_python

.github/workflows/job_pytorch_models_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
run: |
9696
# install git (required to build pip deps from the sources)
9797
# install 'g++' to build 'detectron2' and 'natten' wheels
98-
sudo apt-get install --assume-yes --no-install-recommends g++ git ca-certificates ocl-icd-libopencl1
98+
sudo apt-get install --assume-yes --no-install-recommends g++ git ca-certificates
9999
100100
- name: Setup Python 3.11
101101
uses: ./openvino/.github/actions/setup_python

.github/workflows/job_tensorflow_models_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
if: ${{ runner.os == 'Linux' }}
9595
run: |
9696
# install git (required to build pip deps from the sources)
97-
sudo apt-get install --assume-yes --no-install-recommends g++ git ca-certificates ocl-icd-libopencl1
97+
sudo apt-get install --assume-yes --no-install-recommends g++ git ca-certificates
9898
9999
- name: Setup Python 3.11
100100
uses: ./openvino/.github/actions/setup_python

scripts/install_dependencies/install_openvino_dependencies.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ if [ "$os" == "raspbian9" ] || [ "$os" == "debian9" ] ; then
131131

132132
elif [ "$os" == "ubuntu18.04" ] ; then
133133

134-
pkgs_core=(ocl-icd-libopencl1 libtbb2)
134+
pkgs_core=(libtbb2)
135135
pkgs_gpu=(ocl-icd-libopencl1)
136136
pkgs_python=(python3.8 libpython3.8 python3.8-venv python3-pip)
137137
pkgs_dev=(cmake pkg-config g++ gcc libc6-dev make sudo)
@@ -140,7 +140,7 @@ elif [ "$os" == "ubuntu20.04" ] || [ "$os" == "debian10" ] || [ "$os" == "raspbi
140140
[ "$os" == "ubuntu21.10" ] || [ "$os" == "ubuntu22.04" ] || [ "$os" == "debian11" ] || [ "$os" == "raspbian11" ] ||
141141
[ "$os" == "ubuntu22.10" ] || [ "$os" == "ubuntu23.04" ] || [ "$os" == "debian12" ] || [ "$os" == "raspbian12" ]; then
142142

143-
pkgs_core=(ocl-icd-libopencl1)
143+
pkgs_core=()
144144
pkgs_gpu=(ocl-icd-libopencl1)
145145
pkgs_python=(python3 python3-venv python3-pip)
146146
pkgs_dev=(cmake pkg-config g++ gcc libc6-dev make sudo)
@@ -223,7 +223,6 @@ elif [ "$os" == "centos7" ] || [ "$os" == "centos8" ] || [ "$os" == "centos9" ]
223223
pkgs_python+=(python3 python3-pip)
224224
extra_repos+=("https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm")
225225
fi
226-
pkgs_core+=("${!pkgs_gpu}")
227226
elif [ "$os" == "opensuse-leap15.3" ] ; then
228227
pkgs_core=(libtbb2 libtbbmalloc2)
229228
pkgs_gpu=(libOpenCL1)

0 commit comments

Comments
 (0)