Skip to content

Commit 2dcb855

Browse files
committed
Add Circle CI setting
1 parent bb504eb commit 2dcb855

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.circleci/config.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
version: 2.0
2+
3+
references:
4+
rust_cfg: &rust_cfg
5+
docker:
6+
- image: rust:1.26
7+
8+
jobs:
9+
test-openblas:
10+
<<: *rust_cfg
11+
steps:
12+
- checkout
13+
- run:
14+
name: test OpenBLAS backend
15+
command: cargo test --no-default-features --features=openblas
16+
17+
test-netlib:
18+
<<: *rust_cfg
19+
steps:
20+
- checkout
21+
- run:
22+
name: test NetLib backend
23+
command: cargo test --no-default-features --features=netlib
24+
25+
test-intel-mkl:
26+
<<: *rust_cfg
27+
steps:
28+
- checkout
29+
- run:
30+
name: test Intel MKL backend
31+
command: cargo test --no-default-features --features=intel-mkl
32+
33+
workflows:
34+
version: 2
35+
tests:
36+
jobs:
37+
- test-openblas
38+
- test-netlib
39+
- test-intel-mkl

0 commit comments

Comments
 (0)