summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorWilliam Godbe <wigodbe@microsoft.com>2017-03-15 16:04:47 -0700
committerGitHub <noreply@github.com>2017-03-15 16:04:47 -0700
commit6ed7bf42bd604ea136ca9c03d9fedcad86be4864 (patch)
tree362defb06e4bc6b369602cffd91c8cb3a5669168 /tests
parent450ac8f965586c7b28488b6af16855a383da6278 (diff)
parentd229d0021869b1fafaeb51c512300925f7d3c5e5 (diff)
downloadcoreclr-6ed7bf42bd604ea136ca9c03d9fedcad86be4864.tar.gz
coreclr-6ed7bf42bd604ea136ca9c03d9fedcad86be4864.tar.bz2
coreclr-6ed7bf42bd604ea136ca9c03d9fedcad86be4864.zip
Merge pull request #10206 from wtgodbe/MultiQueue
Add support for Multiqueing jobs in Helix
Diffstat (limited to 'tests')
-rw-r--r--tests/helixpublish.proj132
-rw-r--r--tests/src/Common/build_against_pkg_dependencies/project.json3
-rw-r--r--tests/src/Common/test_dependencies/project.json3
3 files changed, 82 insertions, 56 deletions
diff --git a/tests/helixpublish.proj b/tests/helixpublish.proj
index 699e220731..f19b2a7226 100644
--- a/tests/helixpublish.proj
+++ b/tests/helixpublish.proj
@@ -1,73 +1,97 @@
-<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
-
+<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="..\dir.props" />
+ <!-- CoreClr-Specific Helix test submission project. -->
+
<PropertyGroup>
- <__BuildType>$(ConfigurationGroup)</__BuildType>
+ <!-- Workaround for dealing with building on Linux/OSX.
+ It doesn't seem possible to pass a connection string on the command line, as it contains ';' characters.
+ Checking for the existence of a connection string will happen inside CloudTest.Helix.targets -->
+ <CloudDropConnectionString Condition="'$(CloudDropConnectionString)'==''" >DefaultEndpointsProtocol=https;AccountName=$(CloudDropAccountName);AccountKey=$(CloudDropAccessToken);EndpointSuffix=core.windows.net</CloudDropConnectionString>
+ <CloudResultsConnectionString Condition="'$(CloudResultsConnectionString)'==''">DefaultEndpointsProtocol=https;AccountName=$(CloudResultsAccountName);AccountKey=$(CloudResultsAccessToken);EndpointSuffix=core.windows.net</CloudResultsConnectionString>
+
+ <!-- Finally, these archives represent the zips of tests that are OSPlatform specific
+ This is used by CloudTest.Helix.Targets to generate relative blob paths for archives. -->
+ <ArchivesRoot>$(TestWorkingDir)/archive</ArchivesRoot>
+ <TestArchivesRoot>$(ArchivesRoot)/tests</TestArchivesRoot>
+
+ <RunnerScript Condition="'$(RunnerScript)' == ''">$(TestRunnerScript)</RunnerScript>
+ <SupplementalPayloadDir Condition="'$(SupplementalPayloadDir)' == ''">$(TestWorkingDir)SupplementalPayload/</SupplementalPayloadDir>
+
+ <!-- The old CloudTest.targets forced a single timeout value onto every test -->
+ <!-- Possible TODO: With the CloudTest.Helix.targets refactor, we have the ability to specify variable timeout-->
+ <TimeoutInSeconds Condition="'$(TimeoutInSeconds)' == ''">1000</TimeoutInSeconds>
+
+ <!-- Set required properties for Helix Submission -->
+ <IsOfficial Condition="'$(OfficialBuildId)'!=''">true</IsOfficial>
+ <CurrentDate>$([System.DateTime]::Now.ToString(yyyyMMdd.mmss))</CurrentDate>
+
+ <HelixJobType Condition="'$(HelixJobType)'==''">test/functional/cli/</HelixJobType>
+
+ <HelixSource Condition="'$(HelixSource)'=='' And '$(IsOfficial)'!='' And '$(TestProduct)'!='' And '$(Branch)'!=''">official/$(TestProduct)/$(Branch)/</HelixSource>
+ <HelixSource Condition="'$(HelixSource)'=='' And '$(IsOfficial)'=='' And '$(TestProduct)'!='' And '$(Branch)'!=''">pr/$(TestProduct)/$(Branch)/</HelixSource>
+ <HelixSource Condition="'$(HelixSource)'==''">pr/unknown/</HelixSource>
+
+ <!-- Local path for storing submission-related files -->
+ <HelixLogFolder>$(ArchivesRoot)/</HelixLogFolder>
+
+ <!-- Properties used for submission by CloudTest.Helix.Targets-->
+ <BuildMoniker>$(CurrentDate)</BuildMoniker>
+ <BuildMoniker Condition="'$(IsOfficial)'=='true'">$(OfficialBuildId)</BuildMoniker>
+ <HelixArchLabel>$(Platform)</HelixArchLabel>
+ <HelixConfigLabel>$(ConfigurationGroup)</HelixConfigLabel>
</PropertyGroup>
- <Import Project="..\dir.props" />
- <Import Project="$(ToolsDir)CloudTest.targets" Condition="Exists('$(ToolsDir)CloudTest.targets')" />
-
- <!-- Define test payload & Correlation (Core_Root) payload -->
- <ItemGroup>
- <TestList Include="$(TestWorkingDir)\archive\tests\*" ></TestList>
- <CoreRootUri Include="$(TestWorkingDir)\archive\Core_Root*\*.zip" ></CoreRootUri>
- <DummyPackages Include="$(TestWorkingDir)\archive\packages\*" ></DummyPackages>
- <ForUpload Include="@(TestList)" ></ForUpload>
- <ForUpload Include="@(CoreRootUri)" ></ForUpload>
- </ItemGroup>
-
- <!-- Define name & location of test JSON blob -->
- <PropertyGroup>
- <SkipArchive>true</SkipArchive>
- <PayloadTestListFilename>Tests.$(ConfigurationGroup).json</PayloadTestListFilename>
- <PayloadTestListFile>$(TestWorkingDir)$(PayloadTestListFilename)</PayloadTestListFile>
+ <!-- Set Helix environment vars based on target platform -->
+ <!-- This is only used in the case where property 'UseScriptRunner' is true.-->
+ <PropertyGroup Condition="'$(TargetsWindows)' == 'true'">
+ <HelixPythonPath>%HELIX_PYTHONPATH%</HelixPythonPath>
+ <RunnerScript>%HELIX_CORRELATION_PAYLOAD%\RunnerScripts\scriptrunner\scriptrunner.py</RunnerScript>
</PropertyGroup>
- <Target Name="CreateTestListJson"
- DependsOnTargets="CreateAzureStorage">
+ <PropertyGroup Condition="'$(TargetsWindows)' != 'true'">
+ <HelixPythonPath>$HELIX_PYTHONPATH</HelixPythonPath>
+ <RunnerScript>$HELIX_CORRELATION_PAYLOAD/RunnerScripts/scriptrunner/scriptrunner.py</RunnerScript>
+ </PropertyGroup>
+ <Target Name="CoreClrPreCloudBuild" >
+ <!-- Put anything you want to do before submitting the general purpose helix job here.
+ Helix requires properly formatted work items and accessible zip files / others to upload, which we'll construct here. -->
+
+ <!-- Gather the test archives for this build
+ If you change binplacing behavior and official runs break,
+ this is a good place to check.-->
<ItemGroup>
- <SupplementalPayload Include="@(DummyPackages)" >
- <RelativeBlobPath>$(Platform)$(ConfigurationGroup)/Packages.zip</RelativeBlobPath>
- </SupplementalPayload>
- <CorrelationPayloadUri Include="@(SupplementalPayload->'$(DropUri)%(RelativeBlobPath)$(DropUriReadOnlyToken)')" />
+ <HelixWorkItem Include="$(TestArchivesRoot)/*.zip" />
</ItemGroup>
+ <Message Text="Full test archive collection : @(HelixWorkItem)" Importance="Low" />
- <PropertyGroup>
- <!-- flatten it into a property as msbuild chokes on @(CorrelationPayloadUri) -->
- <CorrelationPayloadUris>@(CorrelationPayloadUri)</CorrelationPayloadUris>
- <!-- Define Correlation Payload as a property -->
- <CoreRootUris>$(DropUri)$(Platform)$(ConfigurationGroup)/Tests/$([System.String]::Copy('%(RecursiveDir)').Replace('\', '/'))%(CoreRootUri.Filename)%(CoreRootUri.Extension)$(DropUriReadOnlyToken)</CoreRootUris>
- <CorrelationPayloadProperty>$(CorrelationPayloadUris);$(CoreRootUris)</CorrelationPayloadProperty>
- </PropertyGroup>
+ <!-- Verify the test archives exist.
+ NOTE: It may be better to make this an error, but in the past we chose not to as this causes a build break when triggered, versus just no tests run. -->
+ <Warning Condition="'@(HelixWorkItem->Count())' == '0'" Text="Didn't find any test archives in supplied folders!!! Review logs to see where test archive(s) were placed and fix." />
- <ItemGroup>
- <TestList>
+ <ItemGroup>
+ <HelixCorrelationPayloadFile Include="$(ArchivesRoot)\Core_Root*\*.zip">
+ <RelativeBlobPath>$(Platform)$(ConfigurationGroup)/%(Identity)</RelativeBlobPath>
+ </HelixCorrelationPayloadFile>
+ <HelixWorkItem>
<Command Condition="'$(TargetsWindows)' == 'true'">$(HelixPythonPath) $(RunnerScript) --script %HELIX_WORKITEM_PAYLOAD%\runtests.cmd</Command>
<Command Condition="'$(TargetsWindows)' != 'true'">chmod +x $HELIX_WORKITEM_PAYLOAD/runtests.sh &amp;&amp; $(HelixPythonPath) $(RunnerScript) --script $HELIX_WORKITEM_PAYLOAD/runtests.sh</Command>
- <CorrelationPayloadUris>[$(CorrelationPayloadProperty)]</CorrelationPayloadUris>
- <PayloadUri>$(DropUri)$(Platform)$(ConfigurationGroup)/Tests/$([System.String]::Copy('%(RecursiveDir)').Replace('\', '/'))%(Filename)%(Extension)$(DropUriReadOnlyToken)</PayloadUri>
+ <PayloadFile>%(Identity)</PayloadFile>
<WorkItemId>%(Filename)</WorkItemId>
<TimeoutInSeconds>$(TimeoutInSeconds)</TimeoutInSeconds>
- </TestList>
- </ItemGroup>
- <WriteItemsToJson JsonFileName="$(PayloadTestListFile)" Items="@(TestList)" />
- <!-- add test lists to the list of items for upload -->
- <ItemGroup>
- <ForUpload Include="$(PayloadTestListFile)">
- <RelativeBlobPath>$(PayloadTestListFilename)</RelativeBlobPath>
- </ForUpload>
- </ItemGroup>
- <!-- for completion event -->
- <ItemGroup>
- <TestListFile Include="$(PayloadTestListFile)">
- <BuildCompleteJson>$(TestWorkingDir)$(OSPlatformConfig)/FuncBuildComplete.json</BuildCompleteJson>
- <OfficialBuildJson>$(TestWorkingDir)$(OSPlatformConfig)/FuncOfficialBuild.json</OfficialBuildJson>
- <HelixJobUploadCompletePath>$(TestWorkingDir)$(OSPlatformConfig)/helixjobuploadcomplete.sem</HelixJobUploadCompletePath>
- </TestListFile>
+ <RelativeBlobPath>$(Platform)-$(ConfigurationGroup)/Tests/$([System.String]::Copy('%(RecursiveDir)').Replace('\', '/'))%(Filename)%(Extension)</RelativeBlobPath>
+ </HelixWorkItem>
</ItemGroup>
</Target>
- <Target Name="Build" />
+ <!-- Import this at the end so that it can compose properties as needed -->
+ <Import Project="$(ToolsDir)CloudTest.Helix.targets" />
+ <!-- main Entrypoint -->
+ <Target Name="Build">
+ <Message Text="CoreClr-specific Helix test upload project, beginning submission to Helix" />
+ <Message Condition="'$(EnableCloudTest)' == 'false'" Text="... skipping upload / submission due to property 'EnableCloudTest' being set to 'false'" />
+ <CallTarget Condition="'$(EnableCloudTest)' != 'false'" Targets="CoreClrPreCloudBuild;HelixCloudBuild" />
+ </Target>
+
</Project> \ No newline at end of file
diff --git a/tests/src/Common/build_against_pkg_dependencies/project.json b/tests/src/Common/build_against_pkg_dependencies/project.json
index fa2f8b7718..1ef22d1c98 100644
--- a/tests/src/Common/build_against_pkg_dependencies/project.json
+++ b/tests/src/Common/build_against_pkg_dependencies/project.json
@@ -26,6 +26,7 @@
"rhel.7-x64": {},
"debian.8-x64": {},
"fedora.23-x64": {},
- "opensuse.42.1-x64": {}
+ "opensuse.42.1-x64": {},
+ "linux-x64": {}
}
}
diff --git a/tests/src/Common/test_dependencies/project.json b/tests/src/Common/test_dependencies/project.json
index 7e59e0f8f2..d12b7b5b6f 100644
--- a/tests/src/Common/test_dependencies/project.json
+++ b/tests/src/Common/test_dependencies/project.json
@@ -23,6 +23,7 @@
"centos.7-x64": {},
"rhel.7-x64": {},
"debian.8-x64": {},
- "fedora.23-x64": {}
+ "fedora.23-x64": {},
+ "linux-x64": {}
}
}