Skip to content

Commit 4b4e56c

Browse files
committed
Fix results path
Signed-off-by: Antón Casas <[email protected]>
1 parent 2db6fb4 commit 4b4e56c

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/performance.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ jobs:
6464
needs: performance
6565

6666
steps:
67+
- name: Checkout
68+
uses: actions/checkout@v5
69+
with:
70+
fetch-depth: 0
71+
ref: memory/performance
72+
6773
- name: Download artifacts
6874
uses: actions/download-artifact@v4
6975
with:
@@ -75,12 +81,6 @@ jobs:
7581
run: |
7682
ls -l results
7783
78-
- name: Checkout
79-
uses: actions/checkout@v5
80-
with:
81-
fetch-depth: 0
82-
ref: memory/performance
83-
8484
- name: Save results into memory
8585
shell: bash
8686
run: |
@@ -94,12 +94,13 @@ jobs:
9494
# git checkout -B "${BR}"
9595
9696
python3 ci/metrics/save_results.py \
97-
--input build/complete_profile.csv \
97+
--input results/complete_profile.csv \
9898
--output ci/metrics/complete_profile/complete_profile_timeseries.csv
9999
100+
git status
100101
git add ci/metrics/complete_profile/complete_profile_timeseries.csv
101102
git diff --cached --quiet || git commit -m "metrics: append run ${GITHUB_RUN_NUMBER} (${GITHUB_SHA::8})"
102-
git push -f origin "${BR}"
103+
git push origin "${BR}"
103104
104105
- name: Generate plots
105106
shell: bash

0 commit comments

Comments
 (0)