Uh oh!
There was an error while loading. Please reload this page.
[Android] gRPC client tests - #73060
Conversation
…-grpc-client-tests
…-grpc-client-tests
* Get Docker container building & exported via test build * Changes * Add missing pfx certificate * changes * cleanup Co-authored-by: Simon Rozsival <simon@rozsival.com>
ghost
commented
Jul 29, 2022
Tagging subscribers to this area: @directhex Issue DetailsThis is still WIP.
|
akoeplinger
left a comment
There was a problem hiding this comment.
a few license related comments but looks good otherwise
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
…dotnet/runtime into simonrozsival/android-grpc-client-tests
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
PR dotnet#73060 broke uploading of helix test results. This was caused by the change: ```xml <HelixPostCommands>@(HelixPostCommand)</HelixPostCommands> ``` This is overwriting the existing value of `$(HelixPostCommands)`, which gets set to have the upload script invocation in https://github.com/dotnet/arcade/blob/34dff939b4a91e4693f78a856e0e055c1a3f3fba/src/Microsoft.DotNet.Helix/Sdk/tools/azure-pipelines/AzurePipelines.MonoQueue.targets#L8-L15 at evaluation time. Fix by *appending* to the property. Thanks to ChadNedzlek for finding the cause! Fixesdotnet#74699 .
* CI: Fix helix test results reporting PR #73060 broke uploading of helix test results. This was caused by the change: ```xml <HelixPostCommands>@(HelixPostCommand)</HelixPostCommands> ``` This is overwriting the existing value of `$(HelixPostCommands)`, which gets set to have the upload script invocation in https://github.com/dotnet/arcade/blob/34dff939b4a91e4693f78a856e0e055c1a3f3fba/src/Microsoft.DotNet.Helix/Sdk/tools/azure-pipelines/AzurePipelines.MonoQueue.targets#L8-L15 at evaluation time. Fix by *appending* to the property. Thanks to ChadNedzlek for finding the cause! Fixes#74699 . * Disable failing tests, see #74781 Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com>
To improve gRPC support on mobile platforms, we're adding CI for the
Grpc.Clientnuget package that runs interop tests on Android emulators. Most of the code in this PR is copied from the https://github.com/grpc/grpc-dotnet repository.Each test builds and runs a docker container with an gRPC server and runs a functional test on an Android emulator against the server. The test will run periodically and also on demand with
/run azp android-grpc-client-tests.Contributes to #69095