We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6abbbca commit ec07cd3Copy full SHA for ec07cd3
.github/workflows/cmake.yml
@@ -35,9 +35,13 @@ jobs:
35
- name: Install Prerequisites Linux
36
if: ${{matrix.os == 'ubuntu-latest'}}
37
shell: bash
38
+ env:
39
+ DEBIAN_FRONTEND: noninteractive
40
run: |
41
${{github.workspace}}/vcpkg/bootstrap-vcpkg.sh
- 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
45
46
- name: Install Prerequisites macOS
47
if: ${{matrix.os == 'macos-latest'}}
0 commit comments