From 7bbca5c616b4fd9ad96ff17a4cc6cafa959e31f1 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Sun, 5 Apr 2020 19:41:58 +0200 Subject: [PATCH] CI: fix feature selection for nalgebra-lapack. --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7d711539..33df2d02 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -38,7 +38,7 @@ jobs: command: cargo build -p nalgebra-glm --all-features - run: name: build nalgebra-lapack - command: cargo build -p nalgebra-lapack --features netlib + command: cd nalgebra-lapack; cargo build --features netlib test-native: executor: rust-executor steps: @@ -51,7 +51,7 @@ jobs: command: cargo test -p nalgebra-glm --all-features - run: name: test nalgebra-lapack - command: cargo test -p nalgebra-lapack --features netlib + command: cd nalgebra-lapack; cargo test --features netlib build-wasm: executor: rust-executor steps: @@ -71,13 +71,13 @@ jobs: - checkout - run: name: install xargo - command: rustup component add rust-src; cargo install -f xargo; + command: cp .circleci/Xargo.toml .; rustup component add rust-src; cargo install -f xargo; - run: name: build command: xargo build --verbose --no-default-features --target=x86_64-unknown-linux-gnu; - run: name: build --features alloc - command: cp .circleci/Xargo.toml .; xargo build --verbose --no-default-features --features alloc --target=x86_64-unknown-linux-gnu; + command: xargo build --verbose --no-default-features --features alloc --target=x86_64-unknown-linux-gnu; build-nightly: executor: rust-nightly-executor steps: