CI: install dependencies for the tests too.

This commit is contained in:
sebcrozet 2020-04-05 20:45:19 +02:00
parent f782060e99
commit 89a6251292
1 changed files with 3 additions and 1 deletions

View File

@ -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: