Skip to content

Commit cd4b6a7

Browse files
jonwzhengssun30
authored andcommitted
fix runner bug by symlinking libtiff.so.6 to libtiff.so.5
1 parent 9927aa4 commit cd4b6a7

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/CI.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,11 @@ jobs:
8080
mamba info
8181
mamba list
8282
83+
- name: Make libtiff Symlink to Avoid Runner Bug
84+
run: | # This action may need to be removed/adjusted in future runs.
85+
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
86+
find /usr/lib -name libtiff*
87+
8388
# modify env variables as directed in the RMG installation instructions
8489
- name: Set Environment Variables
8590
run: |

0 commit comments

Comments
 (0)