mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-22 19:45:40 +00:00
ci: run tests in parallel
This commit is contained in:
parent
ce32c44b54
commit
2adebcd6cc
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -107,7 +107,7 @@ jobs:
|
|||
${{ matrix.platform.source_cmd }}
|
||||
set -eu
|
||||
export SDL_TESTS_QUICK=1
|
||||
ctest -VV --test-dir build/
|
||||
ctest -VV --test-dir build/ -j2
|
||||
if test "${{ runner.os }}" = "Linux"; then
|
||||
# This should show us the SDL_REVISION
|
||||
strings build/libSDL2-2.0.so.0 | grep SDL-
|
||||
|
|
2
.github/workflows/msvc.yml
vendored
2
.github/workflows/msvc.yml
vendored
|
@ -53,7 +53,7 @@ jobs:
|
|||
if: "! contains(matrix.platform.name, 'ARM')"
|
||||
run: |
|
||||
$env:SDL_TESTS_QUICK=1
|
||||
ctest -VV --test-dir build/ -C Release
|
||||
ctest -VV --test-dir build/ -C Release -j2
|
||||
- name: Install (CMake)
|
||||
run: |
|
||||
echo "SDL2_DIR=$Env:GITHUB_WORKSPACE/prefix" >> $Env:GITHUB_ENV
|
||||
|
|
Loading…
Reference in a new issue