File tree 4 files changed +13
-5
lines changed
4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
- pr-27597
1
+ pr-27882
Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ FROM ${REGISTRY}/library/fedora:29
3
3
4
4
USER root
5
5
6
- RUN yum update -y && yum install -y \
6
+ # dnf configuration
7
+ RUN echo "timeout=60" >> /etc/dnf/dnf.conf && \
8
+ echo "retries=10" >> /etc/dnf/dnf.conf
9
+
10
+ RUN dnf update -y && dnf install -y \
7
11
git \
8
12
curl \
9
13
python3 \
Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ FROM ${REGISTRY}/library/fedora:33
3
3
4
4
USER root
5
5
6
- RUN yum update -y && yum install -y \
6
+ # dnf configuration
7
+ RUN echo "timeout=60" >> /etc/dnf/dnf.conf && \
8
+ echo "retries=10" >> /etc/dnf/dnf.conf
9
+
10
+ RUN dnf update -y && dnf install -y \
7
11
git \
8
12
curl \
9
13
python3 \
Original file line number Diff line number Diff line change @@ -131,10 +131,10 @@ jobs:
131
131
132
132
# install previous release version
133
133
mv /tmp/openvino-2023.repo /etc/yum.repos.d
134
- yum install -y openvino
134
+ dnf install -y openvino
135
135
136
136
# install current version
137
- yum install --allowerasing -y *.rpm
137
+ dnf install --allowerasing -y *.rpm
138
138
working-directory : ${{ env.RPM_PACKAGES_DIR }}
139
139
140
140
- name : Test RPM packages
You can’t perform that action at this time.
0 commit comments