CI: fix feature selection for nalgebra-lapack.

This commit is contained in:
sebcrozet 2020-04-05 19:41:58 +02:00
parent d802b6b5bf
commit 7bbca5c616
1 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ jobs:
command: cargo build -p nalgebra-glm --all-features command: cargo build -p nalgebra-glm --all-features
- run: - run:
name: build nalgebra-lapack name: build nalgebra-lapack
command: cargo build -p nalgebra-lapack --features netlib command: cd nalgebra-lapack; cargo build --features netlib
test-native: test-native:
executor: rust-executor executor: rust-executor
steps: steps:
@ -51,7 +51,7 @@ jobs:
command: cargo test -p nalgebra-glm --all-features command: cargo test -p nalgebra-glm --all-features
- run: - run:
name: test nalgebra-lapack name: test nalgebra-lapack
command: cargo test -p nalgebra-lapack --features netlib command: cd nalgebra-lapack; cargo test --features netlib
build-wasm: build-wasm:
executor: rust-executor executor: rust-executor
steps: steps:
@ -71,13 +71,13 @@ jobs:
- checkout - checkout
- run: - run:
name: install xargo 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: - run:
name: build name: build
command: xargo build --verbose --no-default-features --target=x86_64-unknown-linux-gnu; command: xargo build --verbose --no-default-features --target=x86_64-unknown-linux-gnu;
- run: - run:
name: build --features alloc 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: build-nightly:
executor: rust-nightly-executor executor: rust-nightly-executor
steps: steps: