Skip to content

Commit

Permalink
ci: debug bench output file
Browse files Browse the repository at this point in the history
  • Loading branch information
fkrause98 committed Aug 15, 2024
1 parent e38b8ba commit 5ab19ad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5ab19ad

Please sign in to comment.