Skip to content

Commit f280253

Browse files
committed
Add DLL runtime path
1 parent 72648de commit f280253

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/intel-mkl-sys.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,15 @@ jobs:
7070
- uses: actions/checkout@v1
7171
- name: Get MKL using NuGet
7272
run: |
73-
nuget install intelmkl.devel.cluster.win-x64
74-
nuget install intelmkl.static.cluster.win-x64
73+
nuget install intelmkl.devel.cluster.win-x64 -Version 2022.0.3.171
74+
nuget install intelmkl.static.cluster.win-x64 -Version 2022.0.3.171
75+
- name: Add DLL runtime path
76+
run: |
77+
echo "${{ github.workspace }}/intelmkl.redist.win-x64.2022.0.3.171/runtimes/win-x64/native" >> $Env:GITHUB_PATH
78+
echo "${{ github.workspace }}/intelopenmp.redist.win.2022.0.0.3663/runtimes/win-x64/native" >> $Env:GITHUB_PATH
79+
- name: Check PATH
80+
run: echo $Env:PATH
81+
7582
- uses: actions-rs/cargo@v1
7683
with:
7784
command: test

0 commit comments

Comments
 (0)