From 252b8f0c9f3851c59f8baec5df95bbb2bbf85e72 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 21 Jul 2021 00:01:06 +0200 Subject: [PATCH] CI: Fix installation of OpenSSL on CentOS and AlmaLinux. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c6323c8..b5df06bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -132,7 +132,7 @@ jobs: yum install -y epel-release yum install -y git binutils make autoconf automake gcc diffutils \ texinfo netcat procps socat {lzo,zlib,lz4,ncurses,readline}-devel - yum install openssl11-devel || yum install openssl-devel + yum install -y openssl11-devel || yum install -y openssl-devel if: startsWith(matrix.os, 'centos') || startsWith(matrix.os, 'alma') - name: Install deps (SUSE) -- 2.20.1