diff options
author | Jarret Shook <jashoo@microsoft.com> | 2018-01-12 07:36:03 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-12 07:36:03 -0800 |
commit | 140ba024bf6edb61744fe6b84bd635d389fe1413 (patch) | |
tree | 518843d8dd5c8ebf82eec6a6deca80240975d4a2 /tests | |
parent | 5378afc7c2406074972c415a2ccabfc43273db49 (diff) | |
parent | ed7cab5604c1bf49ea74f4b82c08eb0da41df64c (diff) | |
download | coreclr-140ba024bf6edb61744fe6b84bd635d389fe1413.tar.gz coreclr-140ba024bf6edb61744fe6b84bd635d389fe1413.tar.bz2 coreclr-140ba024bf6edb61744fe6b84bd635d389fe1413.zip |
Merge pull request #15815 from jashook/fix_helix_publish
Fix overwriting os/arch when publishing to helix
Diffstat (limited to 'tests')
-rw-r--r-- | tests/helixpublish.proj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/helixpublish.proj b/tests/helixpublish.proj index 7ae9666e3e..c2ea60d17a 100644 --- a/tests/helixpublish.proj +++ b/tests/helixpublish.proj @@ -76,7 +76,7 @@ <ItemGroup> <HelixCorrelationPayloadFile Include="$(ArchivesRoot)Core_Root*/*.zip"> - <RelativeBlobPath>$(Platform)$(ConfigurationGroup)/%(Identity)</RelativeBlobPath> + <RelativeBlobPath>$(Platform)$(BuildType)/%(Identity)</RelativeBlobPath> </HelixCorrelationPayloadFile> <HelixWorkItem> <Command Condition="'$(TargetsWindows)' == 'true'">$(HelixPythonPath) $(RunnerScript) --script %HELIX_WORKITEM_PAYLOAD%\runtests.cmd</Command> @@ -84,7 +84,7 @@ <PayloadFile>%(Identity)</PayloadFile> <WorkItemId>%(Filename)</WorkItemId> <TimeoutInSeconds>$(TimeoutInSeconds)</TimeoutInSeconds> - <RelativeBlobPath>$(Platform)-$(ConfigurationGroup)/Tests/$([System.String]::Copy('%(RecursiveDir)').Replace('\', '/'))%(Filename)%(Extension)</RelativeBlobPath> + <RelativeBlobPath>$(Platform)-$(BuildType)-$(Rid)/Tests/$([System.String]::Copy('%(RecursiveDir)').Replace('\', '/'))%(Filename)%(Extension)</RelativeBlobPath> </HelixWorkItem> </ItemGroup> </Target> |