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 /.circleci | |
| parent | ff3ae6a7e004ff68a546832e43fff809f3352cf6 (diff) | |
| download | rapier-d2bc2779c9462ec94c1b55960bccb12e4f80d1c2.tar.gz rapier-d2bc2779c9462ec94c1b55960bccb12e4f80d1c2.tar.bz2 rapier-d2bc2779c9462ec94c1b55960bccb12e4f80d1c2.zip | |
CI: fix test execution.
Diffstat (limited to '.circleci')
| -rw-r--r-- | .circleci/config.yml | 11 |
1 files changed, 4 insertions, 7 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; |
