mirror of
https://github.com/curl/curl.git
synced 2026-05-19 17:06:19 +03:00
GHA/dist: fix number of parallel jobs on macos runner
It was using the global parallel value in cmake integration tests, while
on macos runners, this should be lower by one, as used in other macos
jobs. Performance impact is minimal.
Follow-up to fb70812437 #16126
Closes #18701
This commit is contained in:
parent
135e4ec1dd
commit
bdbb50a63e
1 changed files with 1 additions and 0 deletions
1
.github/workflows/distcheck.yml
vendored
1
.github/workflows/distcheck.yml
vendored
|
|
@ -258,6 +258,7 @@ jobs:
|
|||
shell: ${{ contains(matrix.image, 'windows') && 'msys2 {0}' || 'bash' }}
|
||||
env:
|
||||
CC: ${{ !contains(matrix.image, 'windows') && 'clang' || '' }}
|
||||
MAKEFLAGS: ${{ contains(matrix.image, 'macos') && '-j 4' || '-j 5' }}
|
||||
MATRIX_IMAGE: '${{ matrix.image }}'
|
||||
TESTOPTS: ${{ contains(matrix.image, 'macos') && '-D_CURL_PREFILL=ON' || '' }} ${{ contains(matrix.image, 'windows') && '-DCMAKE_UNITY_BUILD_BATCH_SIZE=30' || '' }}
|
||||
OLD_CMAKE_VERSION: 3.11.4
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue