From 8d41a5c20f37fd749e008ba6cca280e4d51e82b2 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Sun, 5 Apr 2020 18:53:50 +0200 Subject: [PATCH] CI: fix some syntax errors. --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7417ef94..e153155e 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 --feature netlib + command: cargo build -p nalgebra-lapack --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 --feature netlib + command: cargo test -p nalgebra-lapack --features netlib build-wasm: executor: rust-executor steps: @@ -77,7 +77,7 @@ jobs: 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: cp .circleci/Xargo.toml .; xargo build --verbose --no-default-features --features alloc --target=x86_64-unknown-linux-gnu; build-nightly: executor: rust-nightly-executor steps: