diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-09-01 17:55:14 +0200 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2020-09-01 17:55:14 +0200 |
| commit | d2bc2779c9462ec94c1b55960bccb12e4f80d1c2 (patch) | |
| tree | 7a1a3f99cfae618e59b709580ab0b9c0752c97a7 | |
| parent | ff3ae6a7e004ff68a546832e43fff809f3352cf6 (diff) | |
| download | rapier-d2bc2779c9462ec94c1b55960bccb12e4f80d1c2.tar.gz rapier-d2bc2779c9462ec94c1b55960bccb12e4f80d1c2.tar.bz2 rapier-d2bc2779c9462ec94c1b55960bccb12e4f80d1c2.zip | |
CI: fix test execution.
| -rw-r--r-- | .circleci/config.yml | 11 | ||||
| -rw-r--r-- | examples2d/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples3d/Cargo.toml | 2 |
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" |
