From ba6e5af3776503d92951785a5d81b104984008f2 Mon Sep 17 00:00:00 2001 From: Wanlin Du <67486458+wanlin31@users.noreply.github.com> Date: Thu, 8 Sep 2022 19:06:04 -0700 Subject: [PATCH] Revert "Stop dotnet tests in the OSS benchmark. (#30787)" (#30906) This reverts commit 97f29a1dca31586651d706d409c2da2e27e430d2. --- tools/internal_ci/linux/grpc_e2e_performance_gke.sh | 7 ++++--- .../linux/grpc_e2e_performance_gke_experiment.sh | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/tools/internal_ci/linux/grpc_e2e_performance_gke.sh b/tools/internal_ci/linux/grpc_e2e_performance_gke.sh index fae56d50d2a..af65d7ecd9d 100755 --- a/tools/internal_ci/linux/grpc_e2e_performance_gke.sh +++ b/tools/internal_ci/linux/grpc_e2e_performance_gke.sh @@ -52,7 +52,7 @@ if [[ "${KOKORO_GITHUB_COMMIT_URL%/*}" == "https://github.com/grpc/grpc/commit" else GRPC_CORE_GITREF="$(git ls-remote https://github.com/grpc/grpc.git master | cut -f1)" fi -# GRPC_DOTNET_GITREF="$(git ls-remote https://github.com/grpc/grpc-dotnet.git master | cut -f1)" +GRPC_DOTNET_GITREF="$(git ls-remote https://github.com/grpc/grpc-dotnet.git master | cut -f1)" GRPC_GO_GITREF="$(git ls-remote https://github.com/grpc/grpc-go.git master | cut -f1)" GRPC_JAVA_GITREF="$(git ls-remote https://github.com/grpc/grpc-java.git master | cut -f1)" # Kokoro jobs run on dedicated pools. @@ -102,8 +102,8 @@ buildConfigs() { -o "loadtest_with_prebuilt_workers_${pool}.yaml" } -buildConfigs "${WORKER_POOL_8CORE}" "${BIGQUERY_TABLE_8CORE}" -l c++ -l go -l java -l php7 -l php7_protobuf_c -l python -l ruby -buildConfigs "${WORKER_POOL_32CORE}" "${BIGQUERY_TABLE_32CORE}" -l c++ -l go -l java +buildConfigs "${WORKER_POOL_8CORE}" "${BIGQUERY_TABLE_8CORE}" -l c++ -l dotnet -l go -l java -l php7 -l php7_protobuf_c -l python -l ruby +buildConfigs "${WORKER_POOL_32CORE}" "${BIGQUERY_TABLE_32CORE}" -l c++ -l dotnet -l go -l java # Delete prebuilt images on exit. deleteImages() { @@ -117,6 +117,7 @@ trap deleteImages EXIT # Build and push prebuilt images for running tests. time ../test-infra/bin/prepare_prebuilt_workers \ -l "cxx:${GRPC_CORE_GITREF}" \ + -l "dotnet:${GRPC_DOTNET_GITREF}" \ -l "go:${GRPC_GO_GITREF}" \ -l "java:${GRPC_JAVA_GITREF}" \ -l "php7:${GRPC_CORE_GITREF}" \ diff --git a/tools/internal_ci/linux/grpc_e2e_performance_gke_experiment.sh b/tools/internal_ci/linux/grpc_e2e_performance_gke_experiment.sh index f0791fc002e..0bd84339730 100755 --- a/tools/internal_ci/linux/grpc_e2e_performance_gke_experiment.sh +++ b/tools/internal_ci/linux/grpc_e2e_performance_gke_experiment.sh @@ -50,7 +50,7 @@ if [[ "${KOKORO_GITHUB_COMMIT_URL%/*}" == "https://github.com/grpc/grpc/commit" else GRPC_CORE_GITREF="$(git ls-remote https://github.com/grpc/grpc.git master | cut -f1)" fi -# GRPC_DOTNET_GITREF="$(git ls-remote https://github.com/grpc/grpc-dotnet.git master | cut -f1)" +GRPC_DOTNET_GITREF="$(git ls-remote https://github.com/grpc/grpc-dotnet.git master | cut -f1)" GRPC_GO_GITREF="$(git ls-remote https://github.com/grpc/grpc-go.git master | cut -f1)" GRPC_JAVA_GITREF="$(git ls-remote https://github.com/grpc/grpc-java.git master | cut -f1)" # Kokoro jobs run on dedicated pools. @@ -100,8 +100,8 @@ buildConfigs() { -o "loadtest_with_prebuilt_workers_${pool}.yaml" } -buildConfigs "${WORKER_POOL_8CORE}" "${BIGQUERY_TABLE_8CORE}" -l c++ -l go -l java -l php7 -l php7_protobuf_c -l python -l ruby -buildConfigs "${WORKER_POOL_32CORE}" "${BIGQUERY_TABLE_32CORE}" -l c++ -l go -l java +buildConfigs "${WORKER_POOL_8CORE}" "${BIGQUERY_TABLE_8CORE}" -l c++ -l dotnet -l go -l java -l php7 -l php7_protobuf_c -l python -l ruby +buildConfigs "${WORKER_POOL_32CORE}" "${BIGQUERY_TABLE_32CORE}" -l c++ -l dotnet -l go -l java # Delete prebuilt images on exit. deleteImages() { @@ -115,6 +115,7 @@ trap deleteImages EXIT # Build and push prebuilt images for running tests. time ../test-infra/bin/prepare_prebuilt_workers \ -l "cxx:${GRPC_CORE_GITREF}" \ + -l "dotnet:${GRPC_DOTNET_GITREF}" \ -l "go:${GRPC_GO_GITREF}" \ -l "java:${GRPC_JAVA_GITREF}" \ -l "php7:${GRPC_CORE_GITREF}" \