Fixing CI build breaks for new CI legs; CLI:release/2.1.3xx (#9202)
* Fedora 27, openSUSE 43.2, and Ubuntu 18.04 should not build native installer packages nor "IncludeSharedFrameworksForBackwardsCompatibilityTests" * Formatting... * Skip test: 'ItRollsForwardToTheLatestVersion'
This commit is contained in:
parent
e7ebf48578
commit
7373d4d309
2 changed files with 14 additions and 3 deletions
|
@ -6,10 +6,21 @@
|
||||||
<!-- https://github.com/dotnet/cli/issues/8800 -->
|
<!-- https://github.com/dotnet/cli/issues/8800 -->
|
||||||
<IncludeNuGetPackageArchive Condition=" $(Architecture.StartsWith('arm')) ">false</IncludeNuGetPackageArchive>
|
<IncludeNuGetPackageArchive Condition=" $(Architecture.StartsWith('arm')) ">false</IncludeNuGetPackageArchive>
|
||||||
<IncludeNuGetPackageArchive Condition=" '$(IncludeNuGetPackageArchive)' == '' ">true</IncludeNuGetPackageArchive>
|
<IncludeNuGetPackageArchive Condition=" '$(IncludeNuGetPackageArchive)' == '' ">true</IncludeNuGetPackageArchive>
|
||||||
<SkipBuildingInstallers Condition=" '$(SkipBuildingInstallers)' == '' AND ($(Rid.StartsWith('rhel.6')) OR $(Rid.StartsWith('linux-musl')))">true</SkipBuildingInstallers>
|
<SkipBuildingInstallers Condition=" '$(SkipBuildingInstallers)' == '' AND
|
||||||
|
($(Rid.StartsWith('rhel.6'))
|
||||||
|
OR $(Rid.StartsWith('linux-musl'))
|
||||||
|
OR $(Rid.StartsWith('fedora.27'))
|
||||||
|
OR $(Rid.StartsWith('opensuse.43.2'))
|
||||||
|
OR $(Rid.StartsWith('ubuntu.18.04')))">true</SkipBuildingInstallers>
|
||||||
<SkipBuildingInstallers Condition=" '$(SkipBuildingInstallers)' == '' ">false</SkipBuildingInstallers>
|
<SkipBuildingInstallers Condition=" '$(SkipBuildingInstallers)' == '' ">false</SkipBuildingInstallers>
|
||||||
<UsePortableLinuxSharedFramework Condition=" '$(UsePortableLinuxSharedFramework)' == '' AND '$(OSPlatform)' == 'linux' AND '$(Rid)' != 'rhel.6-x64' AND '$(Rid)' != 'linux-musl-x64' ">true</UsePortableLinuxSharedFramework>
|
<UsePortableLinuxSharedFramework Condition=" '$(UsePortableLinuxSharedFramework)' == '' AND '$(OSPlatform)' == 'linux' AND '$(Rid)' != 'rhel.6-x64' AND '$(Rid)' != 'linux-musl-x64' ">true</UsePortableLinuxSharedFramework>
|
||||||
<IncludeSharedFrameworksForBackwardsCompatibilityTests Condition=" $(IncludeSharedFrameworksForBackwardsCompatibilityTests) == '' AND '$(Rid)' != 'linux-x64' AND '$(Rid)' != 'rhel.6-x64' AND '$(Rid)' != 'linux-musl-x64'">true</IncludeSharedFrameworksForBackwardsCompatibilityTests>
|
<IncludeSharedFrameworksForBackwardsCompatibilityTests Condition=" $(IncludeSharedFrameworksForBackwardsCompatibilityTests) == ''
|
||||||
|
AND '$(Rid)' != 'linux-x64'
|
||||||
|
AND '$(Rid)' != 'rhel.6-x64'
|
||||||
|
AND '$(Rid)' != 'linux-musl-x64'
|
||||||
|
AND '$(Rid)' != 'fedora.27-x64'
|
||||||
|
AND '$(Rid)' != 'opensuse.43.2-x64'
|
||||||
|
AND '$(Rid)' != 'ubuntu.18.04-x64'">true</IncludeSharedFrameworksForBackwardsCompatibilityTests>
|
||||||
<HighEntropyVA>true</HighEntropyVA>
|
<HighEntropyVA>true</HighEntropyVA>
|
||||||
|
|
||||||
<!-- Only use asset target fallback that we set (not implicit one to net461). -->
|
<!-- Only use asset target fallback that we set (not implicit one to net461). -->
|
||||||
|
|
|
@ -16,7 +16,7 @@ namespace EndToEnd
|
||||||
public class GivenSelfContainedAppsRollForward : TestBase
|
public class GivenSelfContainedAppsRollForward : TestBase
|
||||||
{
|
{
|
||||||
|
|
||||||
[Theory]
|
[Theory(Skip = "Runtime 1.1 support for openSUSE and Fedora 27 needed")]
|
||||||
// MemberData is used instead of InlineData here so we can access it in another test to
|
// MemberData is used instead of InlineData here so we can access it in another test to
|
||||||
// verify that we are covering the latest release of .NET Core
|
// verify that we are covering the latest release of .NET Core
|
||||||
[MemberData(nameof(SupportedNetCoreAppVersions))]
|
[MemberData(nameof(SupportedNetCoreAppVersions))]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue