Skip to content

Commit bd012ad

Browse files
committed
Install cmake/gfortran
1 parent 9736217 commit bd012ad

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.circleci/config.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.0
33
references:
44
rust_cfg: &rust_cfg
55
docker:
6-
- image: rust:1.26
6+
- image: rust:1.26.2
77

88
jobs:
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

0 commit comments

Comments
 (0)