From db75055873bc0478946edf4885e3cb6862b3106f Mon Sep 17 00:00:00 2001 From: Be Wilson Date: Fri, 1 Dec 2023 14:19:31 -0600 Subject: [PATCH] GH Actions: explicitly use --parallel 1 for CMake build --- .github/workflows/github-cxx-qt-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-cxx-qt-tests.yml b/.github/workflows/github-cxx-qt-tests.yml index da30be72b..4037b56fa 100644 --- a/.github/workflows/github-cxx-qt-tests.yml +++ b/.github/workflows/github-cxx-qt-tests.yml @@ -281,7 +281,7 @@ jobs: CC: ${{ matrix.cc }} CXX: ${{ matrix.cxx }} - name: "Build" - run: cmake --build build --config Release + run: cmake --build build --config Release --parallel 1 working-directory: ${{ matrix.workspace }} env: RUSTC_WRAPPER: sccache