commit 844d1aa3fd29fc97ef9bc28078be24c031bd4a96 from: Sergey Bronnikov date: Thu Jun 26 07:29:15 2025 UTC ci: disable "Processing triggers for man-db" The command in Github Actions takes a long time (several minutes) showing the following: Processing triggers for man-db (2.9.4-2) ... The patch disables manual pages in runners, see [1]. 1. https://stackoverflow.com/questions/76607092/google-compute-engine-processing-triggers-for-man-db-2-9-4-2-it-takes-a commit - 5f87ccb29c5ffb13002f5f313e3517ba73bb8f29 commit + 844d1aa3fd29fc97ef9bc28078be24c031bd4a96 blob - 4a6149b6f214c76144b9efeb2a7721a60a87b8c3 blob + c44b9d51b50d95e47130bb77072c536647e9c10c --- .github/workflows/check.yaml +++ .github/workflows/check.yaml @@ -17,6 +17,7 @@ jobs: - uses: actions/checkout@v3 - run: pip3 install -r requirements.txt + - run: sudo apt-get remove --purge man-db - run: sudo apt install -y mandoc python3-autopep8 - run: make check