We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a106e0 commit 9bb84a7Copy full SHA for 9bb84a7
1 file changed
travis-ci/run_task_inside_docker.sh
@@ -25,6 +25,8 @@ case $OS in
25
;;
26
rockylinux8)
27
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
30
31
esac
32
@@ -37,6 +39,12 @@ packages=(gcc gcc-c++ make autoconf automake libtool \
37
39
'perl(URI)' file sudo bison patch curl \
38
40
pam pam-devel libedit libedit-devel)
41
42
+if [[ $OS == rockylinux8 ]]; then
43
+
44
+ # provides `cmp` used by `packaging/git-dirt-filter`
45
+ packages+=(diffutils)
46
+fi
47
48
if [[ $TASK == tests ]]; then
49
set +e
50
[[ $COMPONENTS == *udt* ]] && packages+=(udt-devel libnice-devel)
0 commit comments