1 parent bfcf549 commit 250d8e0Copy full SHA for 250d8e0
1 file changed
.github/workflows/run-benchmark.yml
@@ -18,7 +18,17 @@ jobs:
18
ref: ${{ github.event.pull_request.base.sha }}
19
20
- name: Update baseline
21
- run: swift package --allow-writing-to-package-directory benchmark baseline update main --no-progress
+ run: swift package --allow-writing-to-package-directory benchmark baseline update main --no-progress
22
+ - name: Debug baseline
23
+ run: |
24
+ echo "PWD:"
25
+ pwd
26
+
27
+ echo "Directories:"
28
+ find . -type d -name "*benchmark*" -o -name ".benchmarkBaselines"
29
30
+ echo "Files:"
31
+ find . -type f -name "results.json"
32
33
- name: Upload baseline
34
uses: actions/upload-artifact@v7
@@ -30,7 +40,6 @@ jobs:
40
uses: actions/checkout@v7
41
with:
42
ref: ${{ github.event.pull_request.head.sha }}
- path: current
43
35
44
- name: Download baseline
36
45
uses: actions/download-artifact@v8
0 commit comments