diff --git a/ci/build.sh b/ci/build.sh index 550c9a69..07a2e155 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -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 @@ -25,4 +25,4 @@ EOF rustup component add rust-src cargo install xargo xargo build --verbose --no-default-features --target=x86_64-unknown-linux-gnu --features "${CARGO_FEATURES}"; -fi \ No newline at end of file +fi diff --git a/ci/test.sh b/ci/test.sh index a3a27fb2..04b298f2 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -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 \ No newline at end of file +fi