forked from dotnet/arcade
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release/6.0] Test on CentOS 7, not RedHat 7
- dotnet/dnceng#4298 part 1/II - contributes to dotnet/dnceng#3189 - use Docker container for CentOS, mimicking dotnet/runtime#105063
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,13 +57,13 @@ | |
<PayloadDirectory>$(MSBuildThisFileDirectory)XUnit</PayloadDirectory> | ||
</HelixWorkItem> | ||
</ItemGroup> | ||
<!-- Exercise Helix failure reporting path for Xunit --> | ||
<!-- Exercise Helix failure reporting path for Xunit --> | ||
<ItemGroup> | ||
<AzurePipelinesExpectedTestFailure Include="XunitReportingTests.ExerciseXunitCharacterFilteringFailurePath"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(HelixAccessToken)' != '' "> | ||
<HelixTargetQueue Include="RedHat.7.Amd64"/> | ||
<HelixTargetQueue Include="(Centos.7.Amd64)[email protected]/dotnet-buildtools/prereqs:centos-7-mlnet-helix"/> | ||
<HelixTargetQueue Include="Windows.10.Amd64"/> | ||
<HelixTargetQueue Include="(Debian.11.Amd64)[email protected]/dotnet-buildtools/prereqs:debian-11-helix-amd64"/> | ||
</ItemGroup> | ||
|
@@ -75,7 +75,7 @@ | |
</PropertyGroup> | ||
|
||
<ItemGroup Condition=" '$(HelixAccessToken)' == '' "> | ||
<HelixTargetQueue Include="RedHat.7.Amd64.Open"/> | ||
<HelixTargetQueue Include="(Centos.7.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:centos-7-mlnet-helix"/> | ||
<HelixTargetQueue Include="Windows.10.Amd64.Open"/> | ||
<HelixTargetQueue Include="(Debian.11.Amd64.Open)[email protected]/dotnet-buildtools/prereqs:debian-11-helix-amd64"/> | ||
</ItemGroup> | ||
|
@@ -98,7 +98,7 @@ | |
|
||
<!-- Yields an existing archive that will fail if ArchivePayload doesn't work --> | ||
<Target Name="ZipPrexistingArchive" BeforeTargets="Build"> | ||
<MakeDir Directories="$(IntermediateOutputPath)\correlationarchivepayload" /> | ||
<MakeDir Directories="$(IntermediateOutputPath)\correlationarchivepayload" /> | ||
<WriteLinesToFile | ||
File="$(IntermediateOutputPath)\correlationarchivepayload\testArchivePayload.txt" | ||
Lines="I am a test Archive Payload" | ||
|