Skip to content

Commit f3684e9

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

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 several minutes 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)