Skip to content

Commit 6ee7161

Browse files
committed
Drop tests of iomp for Windows
1 parent ea914e5 commit 6ee7161

File tree

1 file changed

+26
-10
lines changed

1 file changed

+26
-10
lines changed

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

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,34 @@ on:
77
pull_request: {}
88

99
jobs:
10-
static:
10+
windows:
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
feature:
15+
- mkl-static-lp64-seq
16+
- mkl-static-ilp64-seq
17+
runs-on: windows-2019
18+
steps:
19+
- uses: actions/checkout@v1
20+
- uses: actions-rs/cargo@v1
21+
with:
22+
command: test
23+
args: >
24+
--manifest-path=intel-mkl-sys/Cargo.toml
25+
--no-default-features
26+
--features=${{ matrix.feature }},download
27+
28+
macos:
1129
strategy:
1230
fail-fast: false
1331
matrix:
14-
os:
15-
- ubuntu-18.04
1632
feature:
1733
- mkl-static-lp64-iomp
1834
- mkl-static-lp64-seq
1935
- mkl-static-ilp64-iomp
2036
- mkl-static-ilp64-seq
21-
runs-on: ${{ matrix.os }}
37+
runs-on: macos-10.15
2238
steps:
2339
- uses: actions/checkout@v1
2440
- uses: actions-rs/cargo@v1
@@ -29,20 +45,20 @@ jobs:
2945
--no-default-features
3046
--features=${{ matrix.feature }},download
3147
32-
dynamic:
48+
linux:
3349
strategy:
3450
fail-fast: false
3551
matrix:
36-
os:
37-
- windows-2019
38-
- macos-10.15
39-
- ubuntu-18.04
4052
feature:
53+
- mkl-static-lp64-iomp
54+
- mkl-static-lp64-seq
55+
- mkl-static-ilp64-iomp
56+
- mkl-static-ilp64-seq
4157
- mkl-dynamic-lp64-iomp
4258
- mkl-dynamic-lp64-seq
4359
- mkl-dynamic-ilp64-iomp
4460
- mkl-dynamic-ilp64-seq
45-
runs-on: ${{ matrix.os }}
61+
runs-on: ubuntu-18.04
4662
steps:
4763
- uses: actions/checkout@v1
4864
- uses: actions-rs/cargo@v1

0 commit comments

Comments
 (0)