From 77ced1f38d38b4866f124f93a81b9bda9d617b21 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 de7644436..f02e66305 100644 --- a/.github/workflows/github-cxx-qt-tests.yml +++ b/.github/workflows/github-cxx-qt-tests.yml @@ -213,7 +213,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