Skip to content

Commit 4ab4043

Browse files
committed
skip installing ai-model and low-latency optional RPMs
when installed it introduces instability in conformance-optional-components tests Signed-off-by: Evgeny Slutsky <[email protected]>
1 parent 0c9b30c commit 4ab4043

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/devenv-builder/configure-vm.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,9 @@ if ${BUILD_AND_RUN}; then
258258
# Skip gateway api rpms because:
259259
# - Feature is still dev preview and no tests/docs are guaranteed.
260260
# - There is one issue with conformance (see USHIFT-4757) that needs to be addressed in the operator.
261-
"${DNF_RETRY}" "localinstall" "$(find ~/microshift/_output/rpmbuild/RPMS -type f -name "*.rpm" -not -name "*gateway-api*")"
261+
SKIPPED_RPMS="gateway-api ai-model-serving low-latency"
262+
# shellcheck disable=SC2046,SC2086
263+
"${DNF_RETRY}" "localinstall" "$(find ~/microshift/_output/rpmbuild/RPMS -type f -name "*.rpm" $(printf ' -not -name *%s* ' ${SKIPPED_RPMS}))"
262264
else
263265
createrepo "${HOME}/microshift/_output/rpmbuild"
264266
"${DNF_RETRY}" "install" \

0 commit comments

Comments
 (0)