ci: link to system BLAS as intended
This commit is contained in:
parent
8577711e3b
commit
bfd1a578d4
|
@ -13,7 +13,7 @@ if [ -z "$NO_STD" ]; then
|
||||||
cargo build --verbose -p nalgebra --features "debug";
|
cargo build --verbose -p nalgebra --features "debug";
|
||||||
cargo build --verbose -p nalgebra --all-features
|
cargo build --verbose -p nalgebra --all-features
|
||||||
else
|
else
|
||||||
cargo build -p nalgebra-lapack;
|
cargo build --manifest-path nalgebra-lapack/Cargo.toml --features "netlib" --no-default-features;
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ "$CARGO_FEATURES" == "alloc" ]; then
|
if [ "$CARGO_FEATURES" == "alloc" ]; then
|
||||||
|
@ -25,4 +25,4 @@ EOF
|
||||||
rustup component add rust-src
|
rustup component add rust-src
|
||||||
cargo install xargo
|
cargo install xargo
|
||||||
xargo build --verbose --no-default-features --target=x86_64-unknown-linux-gnu --features "${CARGO_FEATURES}";
|
xargo build --verbose --no-default-features --target=x86_64-unknown-linux-gnu --features "${CARGO_FEATURES}";
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -9,6 +9,6 @@ if [ -z "$NO_STD" ]; then
|
||||||
cargo test --verbose --all-features;
|
cargo test --verbose --all-features;
|
||||||
cd nalgebra-glm; cargo test --verbose;
|
cd nalgebra-glm; cargo test --verbose;
|
||||||
else
|
else
|
||||||
cd nalgebra-lapack; cargo test --verbose;
|
cd nalgebra-lapack; cargo test --features "netlib" --no-default-features --verbose;
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue