Skip to content

Commit 2669c85

Browse files
committed
look for libmkl elsewhere
1 parent f48dae1 commit 2669c85

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
@@ -85,6 +85,11 @@ jobs:
8585
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
8686
find /usr/lib -name libtiff*
8787
88+
- name: Make libmkl Symlink to Avoid Runner Bug
89+
run: |
90+
if [ ! -f $CONDA_PREFIX/lib/libmkl_rt.so.2 ] && [ -f $CONDA_PREFIX/lib/libmkl_rt.so ]; then sudo ln -s $CONDA_PREFIX/lib/libmkl_rt.so $CONDA_PREFIX/lib/libmkl_rt.so.2; fi
91+
find $CONDA_PREFIX -iname 'libmkl_rt.so*'
92+
8893
# modify env variables as directed in the RMG installation instructions
8994
- name: Set Environment Variables
9095
run: |

0 commit comments

Comments
 (0)