We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82fa004 commit 963aff2Copy full SHA for 963aff2
.github/workflows/cont-bench.yml
@@ -51,4 +51,14 @@ jobs:
51
- name: Run Benchmark Cases
52
run: |
53
(cd pr && ./mfc.sh bench -o bench.yaml)
54
- find pr/ -maxdepth 1 -name "*.yaml" -exec sh -c 'yq eval -o=json "$1" > "${1%.yaml}.json"' _ {} \;
+ find pr/ -maxdepth 1 -name "*.yaml" -exec sh -c 'yq eval -o=json "$1" > "${1%.yaml}.json"' _ {} \;
55
+
56
+ - name: Archive Results
57
+ uses: actions/upload-artifact@v4
58
+ if: always()
59
+ with:
60
+ name: benchmark-results
61
+ path: |
62
+ pr/bench*
63
+ pr/build/benchmarks/*
64
+ pr/docs/documentation/cont-bench.md
0 commit comments