We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb504eb commit 2dcb855Copy full SHA for 2dcb855
.circleci/config.yml
@@ -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
19
20
21
22
+ name: test NetLib backend
23
+ command: cargo test --no-default-features --features=netlib
24
25
+ test-intel-mkl:
26
27
28
29
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