aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEsun Kim <veblush@google.com>2024-01-11 13:07:17 -0800
committerCopybara-Service <copybara-worker@google.com>2024-01-11 13:10:26 -0800
commitf8b23fd29aa1dc40f5a9e13d0c75d98bca7433f4 (patch)
tree2a0b4fd72eaa71eefa6a5d7bcc63c6f5db4531d1
parentd2cc24f1891b2ddfe5ca34235b8c22430fd7f448 (diff)
downloadgrpc-grpc-f8b23fd29aa1dc40f5a9e13d0c75d98bca7433f4.tar.gz
[Test] Removed openssl tests from the at-head tests (#35520)
Recently two more openssl tests were added to the portability test suite. At-head tests are using the same set, having an unintended big surge in the test time, causing timeout. So I've changed at-head tests not to run openssl tests. Closes #35520 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/35520 from veblush:at-head-diet d0fc79d7f9d001b0b4cb79d3c7f0c55b2e6cdbfb PiperOrigin-RevId: 597634232
-rwxr-xr-xtools/internal_ci/linux/grpc_build_submodule_at_head.sh2
-rwxr-xr-xtools/run_tests/run_tests_matrix.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/tools/internal_ci/linux/grpc_build_submodule_at_head.sh b/tools/internal_ci/linux/grpc_build_submodule_at_head.sh
index ad2e55de15..00bcbe51f6 100755
--- a/tools/internal_ci/linux/grpc_build_submodule_at_head.sh
+++ b/tools/internal_ci/linux/grpc_build_submodule_at_head.sh
@@ -79,4 +79,4 @@ fi
# commit so that changes are passed to Docker
git -c user.name='foo' -c user.email='foo@google.com' commit -a -m 'Update submodule' --allow-empty
-tools/run_tests/run_tests_matrix.py -f linux --exclude c sanity basictests_arm64 --inner_jobs 16 -j 2 --internal_ci --build_only
+tools/run_tests/run_tests_matrix.py -f linux --exclude c sanity basictests_arm64 openssl --inner_jobs 16 -j 2 --internal_ci --build_only
diff --git a/tools/run_tests/run_tests_matrix.py b/tools/run_tests/run_tests_matrix.py
index e6bd5e4e9a..52b4171616 100755
--- a/tools/run_tests/run_tests_matrix.py
+++ b/tools/run_tests/run_tests_matrix.py
@@ -370,7 +370,8 @@ def _create_portability_test_jobs(
platforms=["linux"],
arch="x64",
compiler=compiler,
- labels=["portability", "corelang"],
+ labels=["portability", "corelang"]
+ + (["openssl"] if "openssl" in compiler else []),
extra_args=extra_args,
inner_jobs=inner_jobs,
timeout_seconds=_CPP_RUNTESTS_TIMEOUT,