Skip to content

Commit 3534684

Browse files
committed
Windows job in pack action
1 parent e5344e3 commit 3534684

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/pack.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,22 @@ jobs:
4949
for ar in $(find . -name "mkl-*-*-*.tar"); do
5050
ocipkg push $ar;
5151
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 }}

0 commit comments

Comments
 (0)