From 5630baeb4d32dbfc4461cf5a3475b701cdfb1d18 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Thu, 13 Aug 2026 15:34:00 +0900 Subject: ci: run CTest in parallel Run CTest with parallel jobs in the Windows, Emscripten, Fedora, and shared test-script paths to reduce test time. --- .github/workflows/emscripten.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows/emscripten.yml') diff --git a/.github/workflows/emscripten.yml b/.github/workflows/emscripten.yml index 6087aba..914446b 100644 --- a/.github/workflows/emscripten.yml +++ b/.github/workflows/emscripten.yml @@ -43,7 +43,7 @@ jobs: run: cmake --build build --config Release --parallel 4 - name: "Test" - run: ctest --test-dir build -C Release --output-on-failure + run: ctest --test-dir build -C Release --parallel --output-on-failure # Test ASAN with and without ASM enabled. test-asan: @@ -80,4 +80,4 @@ jobs: run: cmake --build build --config Release --parallel 4 - name: "Test" - run: ctest --test-dir build -C Release --output-on-failure + run: ctest --test-dir build -C Release --parallel --output-on-failure -- cgit v1.2.3-55-g6feb