- name: test | - name: test | ||||
run: | | run: | | ||||
${{ matrix.config_env }} ${{ matrix.runenv }} cmake --build build --target tests | ${{ 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 |
- name: make | - name: make | ||||
run: cmake --build build | run: cmake --build build | ||||
- name: make check | - 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 | - name: make package_source | ||||
run: cmake --build build --target package_source | run: cmake --build build --target package_source | ||||
- name: re-make | - name: re-make | ||||
run: cd unpack/espeak-ng-* && cmake --build build | run: cd unpack/espeak-ng-* && cmake --build build | ||||
- name: re-make check | - 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 |
- name: make | - name: make | ||||
run: cmake --build build --config ${{ matrix.config }} | run: cmake --build build --config ${{ matrix.config }} | ||||
- name: make check | - 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 |