Skip to content

Commit ec07cd3

Browse files
Skip installing man pages in ubuntu CI job
1 parent 6abbbca commit ec07cd3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/cmake.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@ jobs:
3535
- name: Install Prerequisites Linux
3636
if: ${{matrix.os == 'ubuntu-latest'}}
3737
shell: bash
38+
env:
39+
DEBIAN_FRONTEND: noninteractive
3840
run: |
3941
${{github.workspace}}/vcpkg/bootstrap-vcpkg.sh
40-
sudo apt install mono-complete
42+
echo "man-db man-db/auto-update boolean false" | sudo debconf-set-selections
43+
sudo dpkg-reconfigure man-db
44+
sudo apt install --no-install-recommends -y mono-complete
4145
4246
- name: Install Prerequisites macOS
4347
if: ${{matrix.os == 'macos-latest'}}

0 commit comments

Comments
 (0)