From 8577711e3b1e4bcd044ed993d255c94df19c79d0 Mon Sep 17 00:00:00 2001 From: Alexander Bulaev Date: Mon, 13 Jan 2020 23:30:40 +0300 Subject: [PATCH 1/2] nalgebra-lapack: update lapack-src --- nalgebra-lapack/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nalgebra-lapack/Cargo.toml b/nalgebra-lapack/Cargo.toml index 04abbbbd..817d92ef 100644 --- a/nalgebra-lapack/Cargo.toml +++ b/nalgebra-lapack/Cargo.toml @@ -30,7 +30,7 @@ alga = { version = "0.9", default-features = false } serde = { version = "1.0", optional = true } serde_derive = { version = "1.0", optional = true } lapack = { version = "0.16", default-features = false } -lapack-src = { version = "0.3", default-features = false } +lapack-src = { version = "0.5", default-features = false } # clippy = "*" [dev-dependencies] From bfd1a578d4ba4ea3be8ce57f437903e293dfc7ec Mon Sep 17 00:00:00 2001 From: Alexander Bulaev Date: Sun, 19 Jan 2020 18:45:25 +0300 Subject: [PATCH 2/2] ci: link to system BLAS as intended --- ci/build.sh | 4 ++-- ci/test.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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