CI: fix test execution.

This commit is contained in:
Sébastien Crozet
2020-09-01 17:55:14 +02:00
parent ff3ae6a7e0
commit d2bc2779c9
3 changed files with 6 additions and 9 deletions

View File

@@ -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;

View File

@@ -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"

View File

@@ -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"