File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 49
49
for ar in $(find . -name "mkl-*-*-*.tar"); do
50
50
ocipkg push $ar;
51
51
done
52
+
53
+ windows :
54
+ runs-on : windows-2022
55
+ steps :
56
+ - uses : actions/checkout@v1
57
+ - name : Get MKL using NuGet
58
+ run : |
59
+ nuget install intelmkl.devel.cluster.win-x64 -Version 2022.0.3.171
60
+ nuget install intelmkl.static.cluster.win-x64 -Version 2022.0.3.171
61
+ - name : Add DLL runtime path
62
+ run : |
63
+ echo "${{ github.workspace }}/intelmkl.redist.win-x64.2022.0.3.171/runtimes/win-x64/native" >> $Env:GITHUB_PATH
64
+ echo "${{ github.workspace }}/intelopenmp.redist.win.2022.0.0.3663/runtimes/win-x64/native" >> $Env:GITHUB_PATH
65
+ - uses : actions-rs/cargo@v1
66
+ with :
67
+ command : run
68
+ args : --release
69
+ env :
70
+ MKLROOT : ${{ github.workspace }}
You can’t perform that action at this time.
0 commit comments