From 6e31135a71501107145f58ede9ee3e008195eb32 Mon Sep 17 00:00:00 2001 From: Karim Shamazov Date: Fri, 21 Aug 2026 19:34:05 +0300 Subject: [PATCH] add gcc-11 --- tests/kphp_ci_pipeline_runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/kphp_ci_pipeline_runner.py b/tests/kphp_ci_pipeline_runner.py index f5311f2170..7eafcb35bb 100755 --- a/tests/kphp_ci_pipeline_runner.py +++ b/tests/kphp_ci_pipeline_runner.py @@ -183,7 +183,7 @@ def parse_args(): type=str, dest="cc_name", default="gcc", - choices=["gcc", "clang", "clang-16", "clang-18", "clang-19"], + choices=["gcc", "gcc-11", "clang", "clang-16", "clang-18", "clang-19"], help="specify cc for compiling kphp", ) @@ -193,7 +193,7 @@ def parse_args(): type=str, dest="cxx_name", default="g++", - choices=["g++", "clang++", "clang++-16", "clang++-18", "clang++-19"], + choices=["g++", "g++-11", "clang++", "clang++-16", "clang++-18", "clang++-19"], help="specify cxx for compiling kphp and running tests", )