Skip to content

Commit efa6229

Browse files
committed
gh: Try to add the correct LD path
1 parent a27c3e8 commit efa6229

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,10 @@ jobs:
129129

130130
- name: Install libidn11 (required by old CMake binaries)
131131
if: ${{ startsWith( matrix.cmake-version, '3.5.' ) }}
132-
run: sudo apt-get install -y libidn12
132+
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
133136
134137
- name: Show CMake version
135138
run: cmake --version

0 commit comments

Comments
 (0)