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 2a50381 commit 21137cdCopy full SHA for 21137cd
.github/workflows/build-presets.yml
@@ -119,14 +119,16 @@ jobs:
119
set -eux
120
conda init powershell
121
powershell -Command "& {
122
- \$ErrorActionPreference = 'Stop'
+ $ErrorActionPreference = 'Stop'
123
Set-PSDebug -Trace 1
124
125
conda create --yes --quiet -n et python=3.12
126
conda activate et
127
128
python install_requirements.py
129
cmake --preset ${{ matrix.preset }}
130
+
131
+ Write-Host "Build exit code: \$LASTEXITCODE"
132
\$numCores = [System.Environment]::GetEnvironmentVariable('NUMBER_OF_PROCESSORS') - 1
133
cmake --build cmake-out -j \$numCores
134
}"
0 commit comments