[GHA] Win-CC decrease build jobs (#24869)

### Details:
Without thread limitation win-cc pipeline fails with run out of memory
error:

https://github.com/openvinotoolkit/openvino/actions/runs/9384908136

set 16 threads

### Tickets:
 - *ticket-id*
This commit is contained in:
Mikhail Ryzhov 2024-06-05 19:10:04 +02:00 committed by GitHub
parent c87cf86489
commit 13922e7515
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -179,8 +179,8 @@ jobs:
# If the build fails due to running out of RAM, please decrease the number of parallel jobs (--parallel n)
- name: Cmake build - CC COLLECT
run: |
cmake --build ${{ env.BUILD_DIR }} --parallel --config ${{ env.CMAKE_BUILD_TYPE }} && `
cmake --build ${{ env.BUILD_DIR }} --parallel --config ${{ env.CMAKE_BUILD_TYPE }} --target sea_itt_lib
cmake --build ${{ env.BUILD_DIR }} --parallel 16 --config ${{ env.CMAKE_BUILD_TYPE }} && `
cmake --build ${{ env.BUILD_DIR }} --parallel 16 --config ${{ env.CMAKE_BUILD_TYPE }} --target sea_itt_lib
- name: Show ccache stats
run: '& ccache --show-stats'