File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,9 @@ if ${BUILD_AND_RUN}; then
258
258
# Skip gateway api rpms because:
259
259
# - Feature is still dev preview and no tests/docs are guaranteed.
260
260
# - 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} ) ) "
262
264
else
263
265
createrepo " ${HOME} /microshift/_output/rpmbuild"
264
266
" ${DNF_RETRY} " " install" \
You can’t perform that action at this time.
0 commit comments