Skip to content
Open
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
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
include:
- certificate_source: default
security: fapolicyd
- certificate_source: default
security: fips
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
Expand All @@ -56,6 +58,12 @@ jobs:
python-version: '3.12'
- name: Setup libvirt for Vagrant
uses: voxpupuli/setup-vagrant@v0
- name: Patch Vagrant not to use ed25519 keys
# Vagrant tries to use ed25519 over rsa, but ed25519 is not allowed when we run in FIPS mode
# As we enable FIPS *after* the initial VM start, Vagrant has already decided to use ed25519
if: matrix.security == 'fips'
run:
sudo sed -i '/PREFER_KEY_TYPES/ s/"ssh-ed25519".freeze => :ed25519, //' /usr/lib/x86_64-linux-gnu/rubygems-integration/*/gems/vagrant-*/lib/vagrant/util/keypair.rb
- name: Install Ansible
run: pip install --upgrade ansible-core
- name: Setup environment
Expand Down
Loading