Skip to content

Commit 9bb84a7

Browse files
committed
PowerTools repo needs to be enabled for specific dependencies, e.g.:
* libedit-devel * libnice-devel
1 parent 5a106e0 commit 9bb84a7

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

travis-ci/run_task_inside_docker.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ case $OS in
2525
;;
2626
rockylinux8)
2727
yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
28+
dnf -y install dnf-plugins-core
29+
dnf config-manager --set-enabled powertools
2830
;;
2931
esac
3032

@@ -37,6 +39,12 @@ packages=(gcc gcc-c++ make autoconf automake libtool \
3739
'perl(URI)' file sudo bison patch curl \
3840
pam pam-devel libedit libedit-devel)
3941

42+
if [[ $OS == rockylinux8 ]]; then
43+
44+
# provides `cmp` used by `packaging/git-dirt-filter`
45+
packages+=(diffutils)
46+
fi
47+
4048
if [[ $TASK == tests ]]; then
4149
set +e
4250
[[ $COMPONENTS == *udt* ]] && packages+=(udt-devel libnice-devel)

0 commit comments

Comments
 (0)