Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ jobs:
if: matrix.distro.name == 'almalinux' || matrix.distro.name == 'centos' || matrix.distro.name == 'fedora'
# Relax crypto policies to allow RSA signatures
run: |
dnf install -y gawk diffutils elfutils-libelf gcc kernel kernel-devel make openssl patch crypto-policies-scripts
if [ "${{ matrix.distro.tag }}" == "8" ]; then
dnf config-manager --set-enabled powertools
fi
dnf install -y gawk diffutils dwarves elfutils-libelf gcc kernel kernel-devel make openssl patch crypto-policies-scripts
update-crypto-policies --set LEGACY
make install-redhat

Expand Down