nalgebra/ci/test.sh

10 lines
283 B
Bash
Raw Normal View History

2018-05-25 00:29:52 +08:00
#! /bin/bash
if [ -z NO_STD ]; then
cargo test --verbose ${CARGO_FEATURES};
if [ -z CARGO_FEATURES ]; then
export CARGO_FEATURE_SYSTEM_NETLIB=1 CARGO_FEATURE_EXCLUDE_LAPACKE=1 CARGO_FEATURE_EXCLUDE_CBLAS=1
cd nalgebra-lapack; cargo test --verbose;
fi
fi