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 b488b2d commit 79eb221Copy full SHA for 79eb221
.azure-pipelines/PipelineSteps/test-steps.ps1
@@ -31,6 +31,11 @@ if ($PowerShellPlatform) {
31
$preference = $ErrorActionPreference
32
$ErrorActionPreference = 'Continue'
33
$buildProjPath = Join-Path $RepoRoot 'build.proj'
34
+
35
+if ($IsLinux) {
36
+ # Mock step
37
+ Write-Host -ForegroundColor Yellow "Detected Linux agent – applying memory tuning for tests"
38
+}
39
dotnet msbuild $buildProjPath /t:Test "/p:Configuration=$Configuration;TestFramework=$TestFramework"
40
Write-Host -ForegroundColor DarkGreen "-------------------- End testing ... --------------------`n`n`n`n`n"
41
0 commit comments