diff --git a/tests/ci/build_report_check.py b/tests/ci/build_report_check.py index 4ece21d5449..1de401cde9c 100644 --- a/tests/ci/build_report_check.py +++ b/tests/ci/build_report_check.py @@ -37,7 +37,6 @@ class BuildResult: compiler, build_type, sanitizer, - libraries, status, elapsed_seconds, with_coverage, @@ -45,7 +44,6 @@ class BuildResult: self.compiler = compiler self.build_type = build_type self.sanitizer = sanitizer - self.libraries = libraries self.status = status self.elapsed_seconds = elapsed_seconds self.with_coverage = with_coverage @@ -89,7 +87,6 @@ def get_failed_report( compiler="unknown", build_type="unknown", sanitizer="unknown", - libraries="unknown", status=message, elapsed_seconds=0, with_coverage=False, @@ -105,7 +102,6 @@ def process_report( compiler=build_config["compiler"], build_type=build_config["build_type"], sanitizer=build_config["sanitizer"], - libraries=build_config["libraries"], status="success" if build_report["status"] else "failure", elapsed_seconds=build_report["elapsed_seconds"], with_coverage=False, diff --git a/tests/ci/ci_config.py b/tests/ci/ci_config.py index 563756de291..c77acfb679f 100644 --- a/tests/ci/ci_config.py +++ b/tests/ci/ci_config.py @@ -13,7 +13,6 @@ CI_CONFIG = { "sanitizer": "", "package_type": "deb", "static_binary_name": "amd64", - "libraries": "static", "additional_pkgs": True, "tidy": "disable", "with_coverage": False, @@ -23,7 +22,6 @@ CI_CONFIG = { "build_type": "", "sanitizer": "", "package_type": "coverity", - "libraries": "static", "tidy": "disable", "with_coverage": False, "official": False, @@ -34,7 +32,6 @@ CI_CONFIG = { "sanitizer": "", "package_type": "deb", "static_binary_name": "aarch64", - "libraries": "static", "additional_pkgs": True, "tidy": "disable", "with_coverage": False, @@ -44,7 +41,6 @@ CI_CONFIG = { "build_type": "", "sanitizer": "address", "package_type": "deb", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -53,7 +49,6 @@ CI_CONFIG = { "build_type": "", "sanitizer": "undefined", "package_type": "deb", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -62,7 +57,6 @@ CI_CONFIG = { "build_type": "", "sanitizer": "thread", "package_type": "deb", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -71,7 +65,6 @@ CI_CONFIG = { "build_type": "", "sanitizer": "memory", "package_type": "deb", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -80,7 +73,6 @@ CI_CONFIG = { "build_type": "debug", "sanitizer": "", "package_type": "deb", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -89,7 +81,6 @@ CI_CONFIG = { "build_type": "", "sanitizer": "", "package_type": "binary", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -99,7 +90,6 @@ CI_CONFIG = { "sanitizer": "", "package_type": "binary", "static_binary_name": "debug-amd64", - "libraries": "static", "tidy": "enable", "with_coverage": False, }, @@ -109,7 +99,6 @@ CI_CONFIG = { "sanitizer": "", "package_type": "binary", "static_binary_name": "macos", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -118,7 +107,6 @@ CI_CONFIG = { "build_type": "", "sanitizer": "", "package_type": "binary", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -128,7 +116,6 @@ CI_CONFIG = { "sanitizer": "", "package_type": "binary", "static_binary_name": "aarch64v80compat", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -138,7 +125,6 @@ CI_CONFIG = { "sanitizer": "", "package_type": "binary", "static_binary_name": "freebsd", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -148,7 +134,6 @@ CI_CONFIG = { "sanitizer": "", "package_type": "binary", "static_binary_name": "macos-aarch64", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -158,7 +143,6 @@ CI_CONFIG = { "sanitizer": "", "package_type": "binary", "static_binary_name": "powerpc64le", - "libraries": "static", "tidy": "disable", "with_coverage": False, }, @@ -168,7 +152,6 @@ CI_CONFIG = { "sanitizer": "", "package_type": "binary", "static_binary_name": "amd64compat", - "libraries": "static", "tidy": "disable", "with_coverage": False, },