File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: 2.0
3
3
references :
4
4
rust_cfg : &rust_cfg
5
5
docker :
6
- - image : rust:1.26
6
+ - image : rust:1.26.2
7
7
8
8
jobs :
9
9
test-openblas :
@@ -12,15 +12,19 @@ jobs:
12
12
- checkout
13
13
- run :
14
14
name : test OpenBLAS backend
15
- command : cargo test --no-default-features --features=openblas
15
+ command : |
16
+ apt update && apt install -y libgfortran-6-dev
17
+ cargo test --no-default-features --features=openblas
16
18
17
19
test-netlib :
18
20
<< : *rust_cfg
19
21
steps :
20
22
- checkout
21
23
- run :
22
24
name : test NetLib backend
23
- command : cargo test --no-default-features --features=netlib
25
+ command : |
26
+ apt update && apt install -y cmake
27
+ cargo test --no-default-features --features=netlib
24
28
25
29
test-intel-mkl :
26
30
<< : *rust_cfg
You can’t perform that action at this time.
0 commit comments