Output grpc-dotnet interop apps to specific directories

pull/23523/head
James Newton-King 4 years ago
parent 61e176f5c7
commit 21e855592a
No known key found for this signature in database
GPG Key ID: A66B2F456BF5526
  1. 3
      templates/tools/dockerfile/interoptest/grpc_interop_aspnetcore/build_interop.sh.template
  2. 3
      tools/dockerfile/interoptest/grpc_interop_aspnetcore/build_interop.sh
  3. 4
      tools/run_tests/run_interop_tests.py

@ -41,4 +41,5 @@
# Cloning from a local path sets RepositoryUrl to a path and breaks Source Link.
# Override RepositoryUrl to a URL to fix Source Link. The value doesn't matter.
dotnet build --configuration Debug Grpc.DotNet.sln -p:RepositoryUrl=https://github.com/grpc/grpc-dotnet.git
dotnet build --configuration Debug --output ./output/InteropTestsWebsite testassets/InteropTestsWebsite/InteropTestsWebsite.csproj -p:RepositoryUrl=https://github.com/grpc/grpc-dotnet.git
dotnet build --configuration Debug --output ./output/InteropTestsClient testassets/InteropTestsClient/InteropTestsClient.csproj -p:RepositoryUrl=https://github.com/grpc/grpc-dotnet.git

@ -39,4 +39,5 @@ fi
# Cloning from a local path sets RepositoryUrl to a path and breaks Source Link.
# Override RepositoryUrl to a URL to fix Source Link. The value doesn't matter.
dotnet build --configuration Debug Grpc.DotNet.sln -p:RepositoryUrl=https://github.com/grpc/grpc-dotnet.git
dotnet build --configuration Debug --output ./output/InteropTestsWebsite testassets/InteropTestsWebsite/InteropTestsWebsite.csproj -p:RepositoryUrl=https://github.com/grpc/grpc-dotnet.git
dotnet build --configuration Debug --output ./output/InteropTestsClient testassets/InteropTestsClient/InteropTestsClient.csproj -p:RepositoryUrl=https://github.com/grpc/grpc-dotnet.git

@ -190,8 +190,8 @@ class CSharpCoreCLRLanguage:
class AspNetCoreLanguage:
def __init__(self):
self.client_cwd = '../grpc-dotnet/testassets/InteropTestsClient/bin/Debug/netcoreapp3.0'
self.server_cwd = '../grpc-dotnet/testassets/InteropTestsWebsite/bin/Debug/netcoreapp3.0'
self.client_cwd = '../grpc-dotnet/output/InteropTestsClient'
self.server_cwd = '../grpc-dotnet/output/InteropTestsWebsite'
self.safename = str(self)
def cloud_to_prod_env(self):

Loading…
Cancel
Save