Update dependencies from https://github.com/dotnet/arcade build 20190812.7 (#4015)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19412.7
This commit is contained in:
dotnet-maestro[bot] 2019-08-14 19:16:27 +00:00 committed by GitHub
parent 14218209b7
commit 5c70519c30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 22 deletions

View file

@ -65,9 +65,9 @@
</Dependency> </Dependency>
</ProductDependencies> </ProductDependencies>
<ToolsetDependencies> <ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19412.1"> <Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19412.7">
<Uri>https://github.com/dotnet/arcade</Uri> <Uri>https://github.com/dotnet/arcade</Uri>
<Sha>ec2dd5b3e7d11b88b2ca0688bb1685836cfad20a</Sha> <Sha>82c822ee7db08f5347e6ac44e3ed465248394a9e</Sha>
</Dependency> </Dependency>
</ToolsetDependencies> </ToolsetDependencies>
</Dependencies> </Dependencies>

View file

@ -33,7 +33,7 @@ if ($Framework.StartsWith("netcoreapp")) {
} }
if ($Internal) { if ($Internal) {
$Queue = "Windows.10.Amd64.ClientRS5.Perf" $Queue = "Windows.10.Amd64.19H1.Tiger.Perf"
$PerfLabArguments = "--upload-to-perflab-container" $PerfLabArguments = "--upload-to-perflab-container"
$ExtraBenchmarkDotNetArguments = "" $ExtraBenchmarkDotNetArguments = ""
$Creator = "" $Creator = ""

View file

@ -132,7 +132,7 @@ if [[ "$internal" == true ]]; then
if [[ "$architecture" = "arm64" ]]; then if [[ "$architecture" = "arm64" ]]; then
queue=Ubuntu.1804.Arm64.Perf queue=Ubuntu.1804.Arm64.Perf
else else
queue=Ubuntu.1804.Amd64.Perf queue=Ubuntu.1804.Amd64.Tiger.Perf
fi fi
fi fi
@ -157,20 +157,20 @@ if [[ "$use_core_run" = true ]]; then
fi fi
# Make sure all of our variables are available for future steps # Make sure all of our variables are available for future steps
echo "##vso[task.setvariable variable=UseCoreRun]$use_core_run" Write-PipelineSetVariable -name "UseCoreRun" -value "$use_core_run" -is_multi_job_variable false
echo "##vso[task.setvariable variable=Architecture]$architecture" Write-PipelineSetVariable -name "Architecture" -value "$architecture" -is_multi_job_variable false
echo "##vso[task.setvariable variable=PayloadDirectory]$payload_directory" Write-PipelineSetVariable -name "PayloadDirectory" -value "$payload_directory" -is_multi_job_variable false
echo "##vso[task.setvariable variable=PerformanceDirectory]$performance_directory" Write-PipelineSetVariable -name "PerformanceDirectory" -value "$performance_directory" -is_multi_job_variable false
echo "##vso[task.setvariable variable=WorkItemDirectory]$workitem_directory" Write-PipelineSetVariable -name "WorkItemDirectory" -value "$workitem_directory" -is_multi_job_variable false
echo "##vso[task.setvariable variable=Queue]$queue" Write-PipelineSetVariable -name "Queue" -value "$queue" -is_multi_job_variable false
echo "##vso[task.setvariable variable=SetupArguments]$setup_arguments" Write-PipelineSetVariable -name "SetupArguments" -value "$setup_arguments" -is_multi_job_variable false
echo "##vso[task.setvariable variable=Python]python3" Write-PipelineSetVariable -name "Python" -value "$python3" -is_multi_job_variable false
echo "##vso[task.setvariable variable=PerfLabArguments]$perflab_arguments" Write-PipelineSetVariable -name "PerfLabArguments" -value "$perflab_arguments" -is_multi_job_variable false
echo "##vso[task.setvariable variable=ExtraBenchmarkDotNetArguments]$extra_benchmark_dotnet_arguments" Write-PipelineSetVariable -name "ExtraBenchmarkDotNetArguments" -value "$extra_benchmark_dotnet_arguments" -is_multi_job_variable false
echo "##vso[task.setvariable variable=BDNCategories]$run_categories" Write-PipelineSetVariable -name "BDNCategories" -value "$run_categories" -is_multi_job_variable false
echo "##vso[task.setvariable variable=TargetCsproj]$csproj" Write-PipelineSetVariable -name "TargetCsproj" -value "$csproj" -is_multi_job_variable false
echo "##vso[task.setvariable variable=RunFromPerfRepo]$run_from_perf_repo" Write-PipelineSetVariable -name "RunFromPerfRepo" -value "$run_from_perf_repo" -is_multi_job_variable false
echo "##vso[task.setvariable variable=Creator]$creator" Write-PipelineSetVariable -name "Creator" -value "$creator" -is_multi_job_variable false
echo "##vso[task.setvariable variable=HelixSourcePrefix]$helix_source_prefix" Write-PipelineSetVariable -name "HelixSourcePrefix" -value "$helix_source_prefix" -is_multi_job_variable false
echo "##vso[task.setvariable variable=Kind]$kind" Write-PipelineSetVariable -name "Kind" -value "$kind" -is_multi_job_variable false
echo "##vso[task.setvariable variable=_BuildConfig]$architecture.$kind.$framework" Write-PipelineSetVariable -name "_BuildConfig" -value "$architecture.$kind.$framework" -is_multi_job_variable false

View file

@ -3,6 +3,6 @@
"dotnet": "3.0.100-preview6-012264" "dotnet": "3.0.100-preview6-012264"
}, },
"msbuild-sdks": { "msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19412.1" "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19412.7"
} }
} }