Skip to content

Commit 1c7babe

Browse files
committed
add symlink to libtiff5 from libtiff6 in build runner to avoid runner bug
1 parent 806b875 commit 1c7babe

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
3636
activate-environment: rmg_env
3737
use-mamba: true
3838

39+
- name: Make libtiff Symlink to Avoid Runner Bug
40+
run: | # This action may need to be removed/adjusted in future runs.
41+
if [ ! -f /usr/lib/x86_64-linux-gnu/libtiff.so.5 ] && [ -f /usr/lib/x86_64-linux-gnu/libtiff.so.6 ]; then sudo ln -s /usr/lib/x86_64-linux-gnu/libtiff.so.6 /usr/lib/x86_64-linux-gnu/libtiff.so.5; fi
42+
find /usr/lib -name libtiff*
43+
3944
- name: Install sphinx
4045
run: mamba install -y sphinx
4146

0 commit comments

Comments
 (0)