Skip to content

Commit fc47d4e

Browse files
committed
Add windows-ocipkg job
1 parent 550ddbe commit fc47d4e

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

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

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ jobs:
4747
image: rust:1.62.1
4848
steps:
4949
- uses: actions/checkout@v1
50-
- uses: actions-rs/cargo@v1
51-
with:
52-
command: install
53-
args: ocipkg-cli
5450
- uses: actions-rs/cargo@v1
5551
with:
5652
command: test
@@ -87,7 +83,25 @@ jobs:
8783
command: test
8884
args: >
8985
--manifest-path=intel-mkl-sys/Cargo.toml
90-
--no-default-features
9186
--features=${{ matrix.feature }}
9287
env:
9388
MKLROOT: ${{ github.workspace }}
89+
90+
windows-ocipkg:
91+
strategy:
92+
fail-fast: false
93+
matrix:
94+
feature:
95+
- mkl-static-lp64-iomp
96+
- mkl-static-lp64-seq
97+
- mkl-static-ilp64-iomp
98+
- mkl-static-ilp64-seq
99+
runs-on: windows-2022
100+
steps:
101+
- uses: actions/checkout@v1
102+
- uses: actions-rs/cargo@v1
103+
with:
104+
command: test
105+
args: >
106+
--manifest-path=intel-mkl-sys/Cargo.toml
107+
--features=${{ matrix.feature }}

0 commit comments

Comments
 (0)