We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9927aa4 commit cd4b6a7Copy full SHA for cd4b6a7
1 file changed
.github/workflows/CI.yml
@@ -80,6 +80,11 @@ jobs:
80
mamba info
81
mamba list
82
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
+
88
# modify env variables as directed in the RMG installation instructions
89
- name: Set Environment Variables
90
run: |
0 commit comments