You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-Host" -prepareMachine Prepare machine for CI run, clean up processes after build"
72
75
Write-Host" -warnAsError <value> Sets warnaserror msbuild parameter ('true' or 'false')"
76
+
Write-Host" -warnNotAsError <value> Sets a semi-colon delimited list of warning codes that should not be treated as errors"
73
77
Write-Host" -msbuildEngine <value> Msbuild engine to use to run build ('dotnet', 'vs', or unspecified)."
74
78
Write-Host" -excludePrereleaseVS Set to exclude build engines in prerelease versions of Visual Studio"
75
79
Write-Host" -nativeToolsOnMachine Sets the native tools on machine environment variable (indicating that the script should use native tools on machine)"
# Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED.
177
+
# Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on.
178
+
if ($env:MSBUILD_NODEREUSE_ENABLED-ne"1") {
179
+
$nodeReuse=$false
180
+
}
181
+
}
182
+
183
+
if (-not [string]::IsNullOrEmpty($binaryLogName)) {
@@ -204,8 +213,11 @@ if [[ -z "$configuration" ]]; then
204
213
fi
205
214
206
215
if [[ "$ci"==true ]];then
207
-
pipelines_log=true
208
-
node_reuse=false
216
+
# Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED.
217
+
# Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on.
218
+
if [[ "${MSBUILD_NODEREUSE_ENABLED:-}"!="1" ]];then
0 commit comments