We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fe5ded commit 034bd9bCopy full SHA for 034bd9b
.github/actions/continuous-building/trenchbroom/build-binaries/windows/action.yml
@@ -90,6 +90,13 @@ runs:
90
with:
91
CICD_OPERATING_SYSTEM_NAME: ${{ inputs.CICD_OPERATING_SYSTEM_NAME }}
92
QT_VERSION: 6.8.0
93
+ - name: Patch CI script for parallel compilation
94
+ if: steps.cache-restore.outputs.CACHE_HIT != 'true'
95
+ working-directory: working-directory/
96
+ run: |
97
+ $ErrorActionPreference = 'Stop'
98
+ (Get-Content CI-windows.bat) -replace 'cmake --build \. --config Release', "cmake --build . --config Release -- -j $env:NUMBER_OF_PROCESSORS" | Set-Content CI-windows.bat
99
+ shell: pwsh
100
- name: Compile the source code
101
if: steps.cache-restore.outputs.CACHE_HIT != 'true'
102
working-directory: working-directory/
0 commit comments