Skip to content

Commit

Permalink
ci : fix failing Test OKD Bundle GitHub action
Browse files Browse the repository at this point in the history
It seems OKD Bundle GitHub action is failing to locate package named virtiofsd .
GitHub is rolling out Ubuntu 24.04 on it's runners,
- if runner os is selected  as 22.04 (where `virtiofsd` package required by CRC is already installed),
- if it's 24.04 (where `virtiofsd` package is not installed)

Signed-off-by: Rohan Kumar <[email protected]>
  • Loading branch information
rohanKanojia committed Jan 8, 2025
1 parent cebafa4 commit 65ce858
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-okd-bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
run: |
sudo apt-get update
sudo apt install qemu-kvm libvirt-daemon libvirt-daemon-system
# This package may not be present depending on Ubuntu version
sudo apt install virtiofsd || true
sudo usermod -a -G libvirt $USER
- name: Remove unwanted stuff to free up disk image
run: |
Expand Down

0 comments on commit 65ce858

Please sign in to comment.