We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b1f80dc + 0c34c1f commit 4638e90Copy full SHA for 4638e90
1 file changed
.github/actions/set-up-kvm-for-e2e-tests/action.yaml
@@ -23,7 +23,5 @@ runs:
23
sudo chmod 777 /var/run/libvirt/libvirt-sock
24
sudo ls -la /var/run/libvirt/libvirt-sock
25
ls -l /dev/kvm
26
- sudo rmmod kvm_amd
27
- sudo rmmod kvm
28
- sudo modprobe -a kvm
29
- sudo modprobe -a kvm_amd
+ # x86 GitHub Runner can be one of Intel and AMD, so try both.
+ sudo modprobe -a kvm_intel || sudo modprobe -a kvm_amd
0 commit comments