Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci test: do not merge #7640

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions contrib/ci/distro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,16 @@ function distro_pkg_install()
declare prompt=$'Need root permissions to install packages.\n'
prompt+="Enter sudo password for $USER: "
if [[ "$DISTRO_BRANCH" == -redhat-fedora-* ]]; then
set +e
[ $# != 0 ] && sudo -p "$prompt" \
/usr/bin/dnf --assumeyes --best \
--setopt=install_weak_deps=False \
install "$@"
if [ $? -ne 0 ]; then
journalctl -xe --no-pager
exit 1
fi
set -e
elif [[ "$DISTRO_BRANCH" == -redhat-* ]]; then
[ $# != 0 ] && sudo -p "$prompt" yum --assumeyes install "$@" |&
# Pass input to output, fail if a missing package is reported
Expand Down
Loading