Commit Diff
- Commit:
844d1aa3fd29fc97ef9bc28078be24c031bd4a96- From:
- Sergey Bronnikov <estetus@gmail.com>
- Date:
- Message:
- 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
- Actions:
- Patch | Tree
--- .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
