From 850240804c9bbf949c6e7d0ff5593153f4801648 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Fri, 6 Mar 2020 11:19:22 -0800 Subject: [PATCH] Skip Interop.FunctionalTests on arm (#19648) there's no h2spec build for it --- eng/scripts/RunHelix.ps1 | 3 ++- .../Interop.FunctionalTests/Interop.FunctionalTests.csproj | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/eng/scripts/RunHelix.ps1 b/eng/scripts/RunHelix.ps1 index 177580d3ea..9e1bc513a2 100644 --- a/eng/scripts/RunHelix.ps1 +++ b/eng/scripts/RunHelix.ps1 @@ -25,6 +25,7 @@ param( [Parameter(Mandatory=$true)] [string]$Project, [string]$HelixQueues = "Windows.10.Amd64.Open", + [string]$TargetArchitecture = "", [bool]$RunQuarantinedTests = $false ) $ErrorActionPreference = 'Stop' @@ -38,4 +39,4 @@ $env:BUILD_REPOSITORY_NAME="aspnetcore" $env:SYSTEM_TEAMPROJECT="aspnetcore" $HelixQueues = $HelixQueues -replace ";", "%3B" -dotnet msbuild $Project /t:Helix /p:IsRequiredCheck=true /p:IsHelixDaily=true /p:HelixTargetQueues=$HelixQueues /p:RunQuarantinedTests=$RunQuarantinedTests /p:_UseHelixOpenQueues=true \ No newline at end of file +dotnet msbuild $Project /t:Helix /p:TargetArchitecture="$TargetArchitecture" /p:IsRequiredCheck=true /p:IsHelixDaily=true /p:HelixTargetQueues=$HelixQueues /p:RunQuarantinedTests=$RunQuarantinedTests /p:_UseHelixOpenQueues=true \ No newline at end of file diff --git a/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj b/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj index ca861ff26b..9fff0431d9 100644 --- a/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj +++ b/src/Servers/Kestrel/test/Interop.FunctionalTests/Interop.FunctionalTests.csproj @@ -6,6 +6,7 @@ Interop.FunctionalTests false + false