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
11 changes: 6 additions & 5 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up KVM
run: |
sudo chmod 666 /dev/kvm
ls -la /dev/kvm

- name: Configure kernel for nested containers
run: |
# Unload all AppArmor profiles from the kernel.
Expand Down Expand Up @@ -67,6 +62,12 @@ jobs:
libdevmapper-dev \
pkg-config

- name: Set up KVM
run: |
# Re-apply after apt-get which may upgrade udev and reset device permissions
sudo chmod 666 /dev/kvm
ls -la /dev/kvm

- name: Configure Podman
run: |
podman --version
Expand Down
Loading