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