Skip to content

Commit 4fc9ec9

Browse files
authored
uninstall man-db package on ubuntu to avoid potential stalls in package installations (#543)
1 parent 8c80e7c commit 4fc9ec9

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-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 package on ubuntu
35+
if: matrix.os == 'ubuntu-24.04'
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: |

.github/workflows/clang-tidy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ jobs:
1717
with:
1818
persist-credentials: false
1919

20+
# the man-db trigger causes package installations to stall for several minutes at times. so just drop the package.
21+
# see https://github.com/actions/runner/issues/4030
22+
- name: Remove man-db package
23+
run: |
24+
sudo apt-get update
25+
sudo apt-get remove man-db
26+
2027
- name: Install missing software
2128
run: |
2229
sudo apt-get update

0 commit comments

Comments
 (0)