We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a27c3e8 commit efa6229Copy full SHA for efa6229
.github/workflows/build-and-test.yml
@@ -129,7 +129,10 @@ jobs:
129
130
- name: Install libidn11 (required by old CMake binaries)
131
if: ${{ startsWith( matrix.cmake-version, '3.5.' ) }}
132
- run: sudo apt-get install -y libidn12
+ run: |
133
+ sudo apt-get install -y libidn12
134
+ sudo ln -sf /usr/lib/x86_64-linux-gnu/libidn.so.12 /usr/lib/x86_64-linux-gnu/libidn.so.11
135
+ export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/:$LD_LIBRARY_PATH
136
137
- name: Show CMake version
138
run: cmake --version
0 commit comments