From 5ab19ada5f2c8dcecf784a108b07076563049c73 Mon Sep 17 00:00:00 2001 From: Fran Date: Thu, 15 Aug 2024 16:32:03 -0300 Subject: [PATCH] ci: debug bench output file --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a90d741c..c15df36a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -488,7 +488,10 @@ jobs: version: 1.0 - name: Run benchmarks - run: make bench | tee ./output.txt + run: | + echo "${{github.workspace}}/output.txt" + make bench | tee "${{github.workspace}}/output.txt" + # # Download previous benchmark result from cache (if exists) - name: Download previous benchmark data @@ -504,7 +507,7 @@ jobs: # What benchmark tool the output.txt came from tool: 'cargo' # Where the output from the benchmark tool is stored - output-file-path: era_vm/zksync-era/output.txt + output-file-path: "${{github.workspace}}/output.txt" # Where the previous data file is stored external-data-json-path: ./cache/benchmark-data.json # Workflow will fail when an alert happens