Recent changes (master)
Jens Axboe <[email protected]>
| Newsgroups | org.kernel.vger.fio |
|---|---|
| Message-ID | <[email protected]> |
The following changes since commit 58818df7b0948d36ba9743160a1f570700d2347d:
Merge branch 'iouring-spellingfix-2025-03-18' of https://github.com/proact-de/fio (2025-03-18 07:14:24 -0600)
are available in the Git repository at:
git://git.kernel.dk/fio.git master
for you to fetch changes up to c283fe11bda9efde7f063e6fe693802724ddc8c0:
ci: set kvm permissions for GHA QEMU jobs (2025-04-04 11:27:27 -0400)
----------------------------------------------------------------
Vincent Fu (1):
ci: set kvm permissions for GHA QEMU jobs
.github/actions/start-vm/action.yml | 6 ++++++
1 file changed, 6 insertions(+)
---
Diff of recent changes:
diff --git a/.github/actions/start-vm/action.yml b/.github/actions/start-vm/action.yml
index 3449aac5..ab13aa09 100644
--- a/.github/actions/start-vm/action.yml
+++ b/.github/actions/start-vm/action.yml
@@ -25,6 +25,12 @@ runs:
- name: install wait-for-it
shell: bash
run: sudo apt update && sudo apt-get -qq install wait-for-it
+ - name: Enable KVM group perms
+ shell: bash
+ run: |
+ echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
+ sudo udevadm control --reload-rules
+ sudo udevadm trigger --name-match=kvm
- name: Start VM in background
shell: bash
run: |