Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ jobs:
- name: Build
if: matrix.config.name != 'Tarball'
run: |
cmake --build build --config Debug
cmake --build build --config Debug --target install
cmake --build build --parallel --config Debug
cmake --build build --parallel --config Debug --target install

- name: Test
if: matrix.config.name != 'Tarball' && matrix.config.name != 'iOS' && matrix.library_mode != 'MODULE'
Expand All @@ -218,7 +218,7 @@ jobs:
# sudo modprobe snd-virmidi midi_devs=1
# fi

cmake --build build --config Debug --target ${{ matrix.config.test_target }}
cmake --build build --parallel --config Debug --target ${{ matrix.config.test_target }}

shell: bash

Expand Down Expand Up @@ -261,9 +261,9 @@ jobs:
-DCMAKE_CTEST_ARGUMENTS="--rerun-failed;--output-on-failure" \
-DCMAKE_INSTALL_PREFIX=install

cmake --build build
cmake --build build --parallel
if [ "${{ matrix.library_mode }}" != "MODULE" ]; then
cmake --build build --target install
cmake --build build --parallel --target install
cmake --build build --target test
fi

Expand Down Expand Up @@ -337,8 +337,8 @@ jobs:

- name: Build
run: |
cmake --build build --config Debug
cmake --build build --config Debug --target install
cmake --build build --parallel --config Debug
cmake --build build --parallel --config Debug --target install

- name: Test
if: matrix.library_mode != 'MODULE'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
shell: bash
run: |
export ASAN_OPTIONS=detect_leaks=0
${{matrix.config.environment}} cmake --build build --config Debug
${{matrix.config.environment}} cmake --build build --parallel --config Debug

- name: Test
if: runner.os == 'Windows'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
-DCMAKE_CTEST_ARGUMENTS="--rerun-failed;--output-on-failure" \
-DCMAKE_INSTALL_PREFIX=install

cmake --build build-debug
cmake --build build-debug --target install
cmake --build build-debug --parallel
cmake --build build-debug --parallel --target install

- name: Test debug
shell: msys2 {0}
Expand All @@ -79,8 +79,8 @@ jobs:
-DCMAKE_CTEST_ARGUMENTS="--rerun-failed;--output-on-failure" \
-DCMAKE_INSTALL_PREFIX=install

cmake --build build-release
cmake --build build-release --target install
cmake --build build-release --parallel
cmake --build build-release --parallel --target install

- name: Test release
shell: msys2 {0}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
-DLIBREMIDI_EXAMPLES=1

- name: Build
run: cmake --build build
run: cmake --build build --parallel
Loading