From 6808669da0743d361976d8f2e74b2b864a434392 Mon Sep 17 00:00:00 2001 From: MS Date: Mon, 19 May 2025 00:47:00 -0400 Subject: [PATCH] Use argument file for reccmp-aggregate samples (#1507) --- .github/workflows/compare.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compare.yml b/.github/workflows/compare.yml index b4819b72..a0cf4276 100644 --- a/.github/workflows/compare.yml +++ b/.github/workflows/compare.yml @@ -172,9 +172,12 @@ jobs: - name: Aggregate Accuracy shell: bash run: | - reccmp-aggregate --samples $(find build-entropy -type f -name "CONFIGPROGRESS*.json") --output CONFIGPROGRESS-agg.json --html CONFIGPROGRESS-agg.html - reccmp-aggregate --samples $(find build-entropy -type f -name "ISLEPROGRESS*.json") --output ISLEPROGRESS-agg.json --html ISLEPROGRESS-agg.html - reccmp-aggregate --samples $(find build-entropy -type f -name "LEGO1PROGRESS*.json") --output LEGO1PROGRESS-agg.json --html LEGO1PROGRESS-agg.html + find build-entropy -type f -name "CONFIGPROGRESS*.json" > configsamples.txt + find build-entropy -type f -name "ISLEPROGRESS*.json" > islesamples.txt + find build-entropy -type f -name "LEGO1PROGRESS*.json" > lego1samples.txt + reccmp-aggregate --samples @configsamples.txt --output CONFIGPROGRESS-agg.json --html CONFIGPROGRESS-agg.html + reccmp-aggregate --samples @islesamples.txt --output ISLEPROGRESS-agg.json --html ISLEPROGRESS-agg.html + reccmp-aggregate --samples @lego1samples.txt --output LEGO1PROGRESS-agg.json --html LEGO1PROGRESS-agg.html - name: Compare Aggregate Accuracy With Current Master shell: bash