Skip to content

Commit

Permalink
CI: Run ctest tests in parallel, in random order
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Apr 2, 2019
1 parent 2717741 commit 721a0c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ install:
- cmake --build . --config Release --target install

script:
- cmake --build . --config Release --target RUN_TESTS
- ctest -C Release -j4 --schedule-random --output-on-failure
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ build_script:
after_build:
- ps: >-
if ($env:GENERATOR) {
cmake --build . --config $env:CONFIGURATION --target RUN_TESTS
ctest -C $env:CONFIGURATION -j4 --schedule-random --output-on-failure
}
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
command: cmake --build ~/build
- run:
name: "Test"
command: cmake --build ~/build --target test
command: cmake --build ~/build --target test -- ARGS="-j4 --schedule-random --output-on-failure"
- run:
name: "Install"
command: cmake --build ~/build --target install
Expand Down

0 comments on commit 721a0c5

Please sign in to comment.