[llvm] [GitHub] Collect statistics in test-suite workflow (PR #210316)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 17 05:27:38 PDT 2026
https://github.com/lukel97 created https://github.com/llvm/llvm-project/pull/210316
This allows comparing the statistic counters in the results.json artifacts
>From 88a84dc5340182d582fcf28e2f509ee2689fc05a Mon Sep 17 00:00:00 2001
From: Luke Lau <luke at igalia.com>
Date: Fri, 17 Jul 2026 20:24:46 +0800
Subject: [PATCH] [GitHub] Collect statistics in test-suite workflow
This allows comparing the statistic counters in the results.json artifacts
---
.github/workflows/test-suite/configure-and-build.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/test-suite/configure-and-build.sh b/.github/workflows/test-suite/configure-and-build.sh
index 3b78f88f9c6ca..96d79999be00a 100755
--- a/.github/workflows/test-suite/configure-and-build.sh
+++ b/.github/workflows/test-suite/configure-and-build.sh
@@ -7,6 +7,7 @@ cmake -B build.$1 \
-C cmake/caches/O3.cmake \
-GNinja \
-DTEST_SUITE_BENCHMARKING_ONLY=ON \
- -DTEST_SUITE_RUN_BENCHMARKS=OFF
+ -DTEST_SUITE_RUN_BENCHMARKS=OFF \
+ -DTEST_SUITE_COLLECT_STATS=ON
ninja -C build.$1
llvm-lit build.$1 -o results.$1.json
More information about the llvm-commits
mailing list