aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.circleci/config.yml11
-rw-r--r--examples2d/Cargo.toml2
-rw-r--r--examples3d/Cargo.toml2
3 files changed, 6 insertions, 9 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 315c77f..74c63ca 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -33,17 +33,14 @@ jobs:
name: build rapier3d SIMD
command: cd build/rapier3d; cargo build --verbose --features simd-stable;
- run:
- name: build rapier2d SIMD Paallel
+ name: build rapier2d SIMD Parallel
command: cd build/rapier2d; cargo build --verbose --features simd-stable --features parallel;
- run:
- name: build rapier3d SIMD Paallel
+ name: build rapier3d SIMD Parallel
command: cd build/rapier3d; cargo build --verbose --features simd-stable --features parallel;
- run:
- name: test rapier2d
- command: cargo test --verbose -p rapier2d;
- - run:
- name: test rapier3d
- command: cargo test --verbose -p rapier3d;
+ name: test
+ command: cargo test
- run:
name: check rapier_testbed2d
command: cargo check --verbose -p rapier_testbed2d;
diff --git a/examples2d/Cargo.toml b/examples2d/Cargo.toml
index 7e97948..ad63958 100644
--- a/examples2d/Cargo.toml
+++ b/examples2d/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "nphysics-examples-2d"
+name = "rapier-examples-2d"
version = "0.1.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
edition = "2018"
diff --git a/examples3d/Cargo.toml b/examples3d/Cargo.toml
index 8091db8..efc3cce 100644
--- a/examples3d/Cargo.toml
+++ b/examples3d/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "nphysics-examples-3d"
+name = "rapier-examples-3d"
version = "0.1.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
edition = "2018"