Skip to content

Commit 4e32b3a

Browse files
authored
disable man-db update triggers in workflows (Tlf#483)
1 parent 49e0720 commit 4e32b3a

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/ci-build-ubuntu-22.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
run: cat /etc/os-release
2222
- name: Install dependencies
2323
run: |
24+
# first disable man-db update triggers
25+
echo "set man-db/auto-update false" | sudo debconf-communicate
26+
sudo dpkg-reconfigure man-db
27+
#
2428
sudo apt-get -qq update
2529
sudo apt-get install -y libhamlib-dev libxmlrpc-core-c3-dev libglib2.0-dev libcmocka-dev python3-pexpect python3-dev astyle
2630
- name: Set up datadir

.github/workflows/ci-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
run: cat /etc/os-release
2222
- name: Install dependencies
2323
run: |
24+
# first disable man-db update triggers
25+
echo "set man-db/auto-update false" | sudo debconf-communicate
26+
sudo dpkg-reconfigure man-db
27+
#
2428
sudo apt-get -qq update
2529
sudo apt-get install -y libhamlib-dev libxmlrpc-core-c3-dev libglib2.0-dev libcmocka-dev python3-pexpect python3-dev astyle
2630
- name: Set up datadir

0 commit comments

Comments
 (0)