File tree 1 file changed +16
-1
lines changed
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 66
66
- name : Install required virtualization software
67
67
run : |
68
68
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
70
72
sudo usermod -a -G libvirt $USER
71
73
- name : Remove unwanted stuff to free up disk image
72
74
run : |
75
77
sudo rm -rf /opt/ghc
76
78
sudo rm -rf "/usr/local/share/boost"
77
79
sudo rm -rf /opt/hostedtoolcache/CodeQL
80
+ sudo rm -rf \
81
+ /opt/google/chrome \
82
+ /opt/microsoft/msedge \
83
+ /opt/microsoft/powershell \
84
+ /opt/pipx \
85
+ /usr/lib/mono \
86
+ /usr/local/julia* \
87
+ /usr/local/lib/android \
88
+ /usr/local/lib/node_modules \
89
+ /usr/local/share/chromium \
90
+ /usr/local/share/powershell \
91
+ /usr/share/dotnet \
92
+ /usr/share/swift
78
93
79
94
sudo docker image prune --all --force
80
95
You can’t perform that action at this time.
0 commit comments