Skip to content

Commit 1efdbc9

Browse files
committed
ci : Install virtiofsd only when runner os is Ubuntu 24.04
Signed-off-by: Rohan Kumar <[email protected]>
1 parent fc48814 commit 1efdbc9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/e2e-crc-okd-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ jobs:
6666
- name: Install required virtualization software
6767
run: |
6868
sudo apt-get update
69-
sudo apt install qemu-kvm libvirt-daemon libvirt-daemon-system virtiofsd
69+
sudo apt install qemu-kvm libvirt-daemon libvirt-daemon-system
70+
# This package may not be present depending on Ubuntu version
71+
sudo apt install virtiofsd || true
7072
sudo usermod -a -G libvirt $USER
7173
- name: Remove unwanted stuff to free up disk image
7274
run: |

0 commit comments

Comments
 (0)