Browse Source

ci: enable parallel testing

master
Yury Popov 2 years ago
parent
commit
0c818514d7
No account linked to committer's email address
3 changed files with 4 additions and 4 deletions
  1. 1
    1
      .github/workflows/ci.yml
  2. 2
    2
      .github/workflows/dist.yml
  3. 1
    1
      .github/workflows/windows.yml

+ 1
- 1
.github/workflows/ci.yml View File

@@ -235,4 +235,4 @@ jobs:
- name: test
run: |
${{ matrix.config_env }} ${{ matrix.runenv }} cmake --build build --target tests
${{ matrix.config_env }} ${{ matrix.runenv }} ctest --test-dir build -Ttest -j1 --output-on-failure
${{ matrix.config_env }} ${{ matrix.runenv }} ctest --test-dir build -Ttest -j8 --output-on-failure

+ 2
- 2
.github/workflows/dist.yml View File

@@ -53,7 +53,7 @@ jobs:
- name: make
run: cmake --build build
- name: make check
run: ctest --test-dir build -Ttest -j1 --output-on-failure
run: ctest --test-dir build -Ttest -j8 --output-on-failure

- name: make package_source
run: cmake --build build --target package_source
@@ -65,4 +65,4 @@ jobs:
- name: re-make
run: cd unpack/espeak-ng-* && cmake --build build
- name: re-make check
run: cd unpack/espeak-ng-* && ctest --test-dir build -Ttest -j1 --output-on-failure
run: cd unpack/espeak-ng-* && ctest --test-dir build -Ttest -j8 --output-on-failure

+ 1
- 1
.github/workflows/windows.yml View File

@@ -30,4 +30,4 @@ jobs:
- name: make
run: cmake --build build --config ${{ matrix.config }}
- name: make check
run: ctest --test-dir build -Ttest -C ${{ matrix.config }} -j1 --output-on-failure
run: ctest --test-dir build -Ttest -C ${{ matrix.config }} -j8 --output-on-failure

Loading…
Cancel
Save