ci: link to system BLAS as intended

This commit is contained in:
Alexander Bulaev 2020-01-19 18:45:25 +03:00 committed by Sébastien Crozet
parent 8577711e3b
commit bfd1a578d4
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ if [ -z "$NO_STD" ]; then
cargo build --verbose -p nalgebra --features "debug";
cargo build --verbose -p nalgebra --all-features
else
cargo build -p nalgebra-lapack;
cargo build --manifest-path nalgebra-lapack/Cargo.toml --features "netlib" --no-default-features;
fi
else
if [ "$CARGO_FEATURES" == "alloc" ]; then

View File

@ -9,6 +9,6 @@ if [ -z "$NO_STD" ]; then
cargo test --verbose --all-features;
cd nalgebra-glm; cargo test --verbose;
else
cd nalgebra-lapack; cargo test --verbose;
cd nalgebra-lapack; cargo test --features "netlib" --no-default-features --verbose;
fi
fi