From 89a6251292e72cdec1dfbd98360753bf364b0300 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Sun, 5 Apr 2020 20:45:19 +0200 Subject: [PATCH] CI: install dependencies for the tests too. --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3aa0e930..d5e7ba6f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -45,6 +45,8 @@ jobs: executor: rust-executor steps: - checkout + - run: apt-get update + - run: apt-get install -y cmake gfortran libblas-dev liblapack-dev - run: name: test command: cargo test --all-features @@ -53,7 +55,7 @@ jobs: command: cargo test -p nalgebra-glm --all-features - run: name: test nalgebra-lapack - command: cd nalgebra-lapack; cargo test --features netlib + command: cd nalgebra-lapack; cargo test build-wasm: executor: rust-executor steps: