-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies from https://github.com/dotnet/arcade build 20210…
…401.6 (#775) [main] Update dependencies from dotnet/arcade
- Loading branch information
1 parent
07938cd
commit 33aaf1d
Showing
4 changed files
with
49 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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<Project Sdk="Microsoft.DotNet.Helix.Sdk" DefaultTargets="Test"> | ||
<PropertyGroup Condition="'$(AGENT_OS)' != 'Windows_NT'"> | ||
<Python>python3</Python> | ||
<HelixPreCommands>$(HelixPreCommands);chmod +x $HELIX_WORKITEM_PAYLOAD/SOD/SizeOnDisk</HelixPreCommands> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<HelixCorrelationPayload Include="$(CorrelationPayloadDirectory)"> | ||
<PayloadDirectory>%(Identity)</PayloadDirectory> | ||
</HelixCorrelationPayload> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition="'$(AGENT_OS)' == 'Windows_NT'"> | ||
<ScenarioDirectory>%HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\</ScenarioDirectory> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(AGENT_OS)' != 'Windows_NT'"> | ||
<ScenarioDirectory>$HELIX_CORRELATION_PAYLOAD/performance/src/scenarios/</ScenarioDirectory> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<HelixWorkItem Include="SOD - Android HelloWorld APK Size"> | ||
<PayloadDirectory>$(WorkItemDirectory)</PayloadDirectory> | ||
<PreCommands>cd $(ScenarioDirectory)helloandroid;copy %HELIX_CORRELATION_PAYLOAD%\HelloAndroid.apk .;$(Python) pre.py</PreCommands> | ||
<Command>$(Python) test.py sod --scenario-name "%(Identity)"</Command> | ||
<PostCommands>$(Python) post.py</PostCommands> | ||
</HelixWorkItem> | ||
<HelixWorkItem Include="SOD - Android HelloWorld Extracted Size"> | ||
<PayloadDirectory>$(WorkItemDirectory)</PayloadDirectory> | ||
<PreCommands>cd $(ScenarioDirectory)helloandroid;copy %HELIX_CORRELATION_PAYLOAD%\HelloAndroid.apk .;$(Python) pre.py --unzip</PreCommands> | ||
<Command>$(Python) test.py sod --scenario-name "%(Identity)"</Command> | ||
<PostCommands>$(Python) post.py</PostCommands> | ||
</HelixWorkItem> | ||
</ItemGroup> | ||
</Project> |
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
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