From f3289d55989db1a1c8ac664e0948627b57f234d7 Mon Sep 17 00:00:00 2001 From: Mimi Zohar Date: Thu, 26 Jan 2023 14:58:06 +0100 Subject: [PATCH] ci: haveged requires EPEL on CentOS stream:8 The travis "fedora:latest" matrix rule fails due to not finding "haveged". Install "haveged" after enabling EPEL. Fixes: f106a9022d1f ("Add support for creating a new testing environment in functions.sh") Reviewed-by: Stefan Berger Signed-off-by: Roberto Sassu Signed-off-by: Mimi Zohar --- ci/fedora.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/fedora.sh b/ci/fedora.sh index 3f75d2e..1d17c6b 100755 --- a/ci/fedora.sh +++ b/ci/fedora.sh @@ -46,7 +46,6 @@ yum -y install \ wget \ which \ zstd \ - haveged \ systemd \ keyutils \ e2fsprogs \ @@ -62,5 +61,8 @@ if [ -f /etc/centos-release ]; then fi yum -y install softhsm || true +# haveged is available via EPEL on CentOS stream8. +yum -y install haveged || true + ./tests/install-fsverity.sh ./tests/install-mount-idmapped.sh