From f2ec087fe2d79c02607fbd5512f97c24fbf31ac4 Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Fri, 23 Jan 2026 11:21:43 +0000 Subject: [PATCH] build only Signed-off-by: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> --- .github/scripts/strategy-matrix/generate.py | 2 +- include/xrpl/core/JobQueue.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/scripts/strategy-matrix/generate.py b/.github/scripts/strategy-matrix/generate.py index 0e44b1be54..78dafc8f4f 100755 --- a/.github/scripts/strategy-matrix/generate.py +++ b/.github/scripts/strategy-matrix/generate.py @@ -44,7 +44,7 @@ def generate_strategy_matrix(all: bool, config: Config) -> list: # We build and test all configurations by default, except for Windows in # Debug, because it is too slow, as well as when code coverage is # enabled as that mode already runs the tests. - build_only = False + build_only = True if os["distro_name"] == "windows" and build_type == "Debug": build_only = True diff --git a/include/xrpl/core/JobQueue.h b/include/xrpl/core/JobQueue.h index 3822015fc8..cd5e5abe99 100644 --- a/include/xrpl/core/JobQueue.h +++ b/include/xrpl/core/JobQueue.h @@ -5,7 +5,6 @@ #include #include #include -#include #include #include @@ -15,6 +14,8 @@ namespace xrpl { +class LoadEvent; + namespace perf { class PerfLog; }