mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-04-28 22:53:37 +02:00

Get the packages for pkcs11 testing on the CI/CD system, where available. On those system where it is not available, skip the two tests. The following distros cannot run the pkcs11 tests: - Alpine: package with pkcs11 engine not available - CentOS7: softhsm 2.1.0 is too old for tests to work; tests also fail when trying to sign with pkcs11 URI using openssl command line tool - OpenSuSE Leap: softhsm package not available in main repo Signed-off-by: Stefan Berger <stefanb@linux.ibm.com> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
52 lines
870 B
Bash
Executable File
52 lines
870 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) 2020 Petr Vorel <pvorel@suse.cz>
|
|
set -e
|
|
|
|
if [ -z "$CC" ]; then
|
|
echo "missing \$CC!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
case "$TSS" in
|
|
ibmtss) TSS="tss2-devel";;
|
|
tpm2-tss) TSS="tpm2-tss-devel";;
|
|
'') echo "Missing TSS!" >&2; exit 1;;
|
|
*) echo "Unsupported TSS: '$TSS'!" >&2; exit 1;;
|
|
esac
|
|
|
|
# ibmswtpm2 requires gcc
|
|
[ "$CC" = "gcc" ] || CC="gcc $CC"
|
|
|
|
yum -y install \
|
|
$CC $TSS \
|
|
asciidoc \
|
|
attr \
|
|
autoconf \
|
|
automake \
|
|
diffutils \
|
|
docbook-xsl \
|
|
gnutls-utils \
|
|
gzip \
|
|
keyutils-libs-devel \
|
|
libattr-devel \
|
|
libtool \
|
|
libxslt \
|
|
make \
|
|
openssl \
|
|
openssl-devel \
|
|
openssl-pkcs11 \
|
|
pkg-config \
|
|
procps \
|
|
sudo \
|
|
vim-common \
|
|
wget \
|
|
which
|
|
|
|
yum -y install docbook5-style-xsl || true
|
|
yum -y install swtpm || true
|
|
|
|
# SoftHSM is available via EPEL on CentOS
|
|
if [ -f /etc/centos-release ]; then
|
|
yum -y install epel-release
|
|
fi
|
|
yum -y install softhsm || true |