We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
man-db
1 parent 8c80e7c commit cce4ff6Copy full SHA for cce4ff6
.github/workflows/CI-unixish.yml
@@ -29,6 +29,14 @@ jobs:
29
with:
30
persist-credentials: false
31
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
+
40
- name: Install missing software on ubuntu
41
if: matrix.os == 'ubuntu-24.04'
42
run: |
0 commit comments