From a09327bdefeff300ffc22fbc06f78962a815c188 Mon Sep 17 00:00:00 2001 From: Allan Jeremy Date: Tue, 7 Jun 2022 08:44:09 +0300 Subject: [PATCH] Debug WIP: Cachegrind save output file --- .github/workflows/static-analysis-cachegrind.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static-analysis-cachegrind.yml b/.github/workflows/static-analysis-cachegrind.yml index 980509b4..5ef0da1f 100644 --- a/.github/workflows/static-analysis-cachegrind.yml +++ b/.github/workflows/static-analysis-cachegrind.yml @@ -54,10 +54,10 @@ jobs: sudo apt-get install valgrind - name: Run ${{ matrix.bench.title }} (Cold Cachegrind) - run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/measure_time.py ./build/release/luau-analyze bench/static_analysis/LuauPolyfillMap.lua | tee -a ${{ matrix.bench.script }}-output.txt + run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/measure_time.py ./build/release/luau-analyze bench/static_analysis/LuauPolyfillMap.lua | tee ${{ matrix.bench.script }}-output.txt - name: Run ${{ matrix.bench.title }} (Warm Cachegrind) - run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/measure_time.py ./build/release/luau-analyze bench/static_analysis/LuauPolyfillMap.lua | tee -a ${{ matrix.bench.script }}-output.txt + run: sudo bash ./scripts/run-with-cachegrind.sh python ./bench/measure_time.py ./build/release/luau-analyze bench/static_analysis/LuauPolyfillMap.lua | tee ${{ matrix.bench.script }}-output.txt - name: Checkout Benchmark Results repository uses: actions/checkout@v3