Skip to content

Commit a63ae25

Browse files
authored
Ignore *-server-ose* repos in the CI (#1314)
This is a workaround not to pull python3-perf from CI's *-server-ose* repos and reverts #1312. Co-authored-by: Jiri Mencak <[email protected]>
1 parent 8e06341 commit a63ae25

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hack/dockerfile_install_support.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ else
4747
tuned-profiles-nfv-host tuned-profiles-openshift tuned-profiles-oracle tuned-profiles-postgresql tuned-profiles-realtime \
4848
tuned-profiles-sap tuned-profiles-sap-hana tuned-profiles-spectrumscale \
4949
$INSTALL_PKGS"
50-
dnf install --setopt=tsflags=nodocs -y ${INSTALL_PKGS}
50+
test "$OPENSHIFT_CI" && extra_opts="--disablerepo *-server-ose*" || extra_opts="" # Workaround not to pull python3-perf from "ose" repos
51+
dnf install --setopt=tsflags=nodocs -y $extra_opts ${INSTALL_PKGS}
5152

5253
fi
5354

0 commit comments

Comments
 (0)