Skip to content

Commit 2eaf013

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

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,12 @@ 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
7579
- uses: actions-rs/cargo@v1
7680
with:
7781
command: test

0 commit comments

Comments
 (0)