Skip to content

Commit cce4ff6

Browse files
committed
CI-unixish.yml: uninstall man-db package to avoid stalls in package installations
1 parent 8c80e7c commit cce4ff6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/CI-unixish.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ jobs:
2929
with:
3030
persist-credentials: false
3131

32+
# the man-db trigger causes package installations to stall for over a minute at times. so just drop the package.
33+
# see https://github.com/actions/runner/issues/4030
34+
- name: Remove man-db on ubuntu
35+
if: contains(matrix.os, 'ubuntu')
36+
run: |
37+
sudo apt-get update
38+
sudo apt-get remove man-db
39+
3240
- name: Install missing software on ubuntu
3341
if: matrix.os == 'ubuntu-24.04'
3442
run: |

0 commit comments

Comments
 (0)