aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJ08nY2024-07-11 18:53:57 +0200
committerJ08nY2024-07-11 18:53:57 +0200
commit764db654824081d60bfa07aee338218a973d9210 (patch)
treec30075d3801c35ea1c9ca62e13a4040f55493129 /.github
parent5eacfee6aade527e7c100125772376b4b9d590d6 (diff)
downloadpyecsca-764db654824081d60bfa07aee338218a973d9210.tar.gz
pyecsca-764db654824081d60bfa07aee338218a973d9210.tar.zst
pyecsca-764db654824081d60bfa07aee338218a973d9210.zip
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/perf.yml18
1 files changed, 15 insertions, 3 deletions
diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml
index ab99ec2..69ea332 100644
--- a/.github/workflows/perf.yml
+++ b/.github/workflows/perf.yml
@@ -68,8 +68,20 @@ jobs:
runs-on: ubuntu-20.04
needs: perf
steps:
- - name: Merge perf results
- uses: actions/upload-artifact/merge@v4
+ - name: Download perf results
+ uses: actions/download-artifact@v4
+ - name: Merge
+ run: |
+ mkdir out
+ for dir in */; do if [ "$dir" != "out/" ]; then echo $dir; for f in "$dir"*; do fname=$(basename $f); echo $fname; cat $f >> out/$fname; done; fi; done
+ - name: Upload merged
+ uses: actions/upload-artifact@v4
with:
name: perf-results
- delete-merged: true
+ path:
+ out
+ - name: Delete old
+ uses: geekyeggo/delete-artifact@v5
+ with:
+ name: |
+ perf-results-*