From 9ee3562d847f520ae7c9ba358a97094b346bc0a2 Mon Sep 17 00:00:00 2001 From: Esun Kim Date: Mon, 25 Sep 2023 12:53:42 -0700 Subject: [PATCH] [Test] Changed the script to use gcc8 (#34467) Changed missing piece of https://github.com/grpc/grpc/pull/34444 --- tools/run_tests/run_tests.py | 6 +++--- tools/run_tests/run_tests_matrix.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index bdf9738009f..e07526bb252 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -560,8 +560,8 @@ class CLanguage(object): if compiler == "default" or compiler == "cmake": return ("debian11", []) - elif compiler == "gcc7": - return ("gcc_7", []) + elif compiler == "gcc8": + return ("gcc_8", []) elif compiler == "gcc10.2": return ("debian11", []) elif compiler == "gcc10.2_openssl102": @@ -1714,7 +1714,7 @@ argp.add_argument( "--compiler", choices=[ "default", - "gcc7", + "gcc8", "gcc10.2", "gcc10.2_openssl102", "gcc12", diff --git a/tools/run_tests/run_tests_matrix.py b/tools/run_tests/run_tests_matrix.py index a02a6feddcd..32398a2244e 100755 --- a/tools/run_tests/run_tests_matrix.py +++ b/tools/run_tests/run_tests_matrix.py @@ -354,7 +354,7 @@ def _create_portability_test_jobs( # portability C and C++ on x64 for compiler in [ - "gcc7", + "gcc8", # 'gcc10.2_openssl102', // TODO(b/283304471): Enable this later "gcc12", "gcc12_openssl309",