From 5d5000011a95c6cdfbf4105c2871d5024594b2d0 Mon Sep 17 00:00:00 2001 From: Rangi Date: Thu, 2 Jul 2026 17:00:54 -0400 Subject: [PATCH] Remove `CMAKE_INSTALL_PARALLEL_LEVEL` This value "has no impact unless `INSTALL_PARALLEL` is enabled", and since our install procedure is so simple, I don't think we need to add that. (The `make install` commands don't use `-j` either.) --- .github/workflows/create-release-artifacts.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/create-release-artifacts.yml b/.github/workflows/create-release-artifacts.yml index 8f892a2d..dd9a1861 100644 --- a/.github/workflows/create-release-artifacts.yml +++ b/.github/workflows/create-release-artifacts.yml @@ -14,7 +14,6 @@ env: # Approximate number of CPU cores in GitHub's runners as of 2026-03-18: # https://docs.github.com/en/actions/reference/runners/github-hosted-runners#standard-github-hosted-runners-for-public-repositories CMAKE_BUILD_PARALLEL_LEVEL: 4 # `cmake --build` now implies `--parallel 4`. - CMAKE_INSTALL_PARALLEL_LEVEL: 4 # `cmake --install` now implies `--parallel 4`. CMAKE_BUILD_TYPE: Release # `cmake -S` now implies `-DCMAKE_BUILD_TYPE=Release`. CMAKE_CONFIG_TYPE: Release # `cmake --build` now implies `--config Release`.