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
33references :
44 rust_cfg : &rust_cfg
55 docker :
6- - image : rust:1.26
6+ - image : rust:1.26.2
77
88jobs :
99 test-openblas :
@@ -12,15 +12,19 @@ jobs:
1212 - checkout
1313 - run :
1414 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
1618
1719 test-netlib :
1820 << : *rust_cfg
1921 steps :
2022 - checkout
2123 - run :
2224 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
2428
2529 test-intel-mkl :
2630 << : *rust_cfg
You can’t perform that action at this time.
0 commit comments