Skip to content

Commit c543774

Browse files
Merge branch '219-refactor-report' of https://github.com/feelpp/benchmarking.toolboxes into 219-refactor-report
2 parents f36076f + d59ae8b commit c543774

File tree

7 files changed

+385
-149
lines changed

7 files changed

+385
-149
lines changed

.github/workflows/benchmark.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
timeout-minutes: 7200
9999
name: ${{matrix.machine}}
100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102

103103
- uses: astral-sh/setup-uv@v5
104104

@@ -147,7 +147,7 @@ jobs:
147147
run: echo "reports_base_dir=${{matrix.system_config.reports_base_dir}}" | sed "s|\$PWD|${{ github.workspace }}|g" >> $GITHUB_OUTPUT
148148

149149
- name: Upload reframe report
150-
uses: actions/upload-artifact@v4
150+
uses: actions/upload-artifact@v5
151151
with:
152152
name: benchmark-results-${{matrix.machine}}
153153
path: ${{steps.parse_reports_path.outputs.reports_base_dir}}
@@ -158,12 +158,12 @@ jobs:
158158
name: Handle results and trigger rendering
159159
if: ${{ github.event.inputs.upload_id == '' && github.event.client_payload.upload_id == '' }}
160160
steps:
161-
- uses: actions/checkout@v5
161+
- uses: actions/checkout@v6
162162

163163
- uses: astral-sh/setup-uv@v5
164164

165165
- name: Download results
166-
uses: actions/download-artifact@v4
166+
uses: actions/download-artifact@v6
167167
with:
168168
pattern: benchmark-results-*
169169
path: ./tmp/results/
@@ -191,7 +191,7 @@ jobs:
191191
echo "use_case=$(jq -r '.use_case_name' ${{ github.event.inputs.benchmark_config || github.event.client_payload.benchmark_config }})" >> $GITHUB_OUTPUT
192192
193193
- name: Create Pull Request
194-
uses: peter-evans/create-pull-request@v7
194+
uses: peter-evans/create-pull-request@v8
195195
with:
196196
title: "Add benchmark for ${{ steps.gather_arguments.outputs.use_case }}"
197197
commit-message: "Add benchmark for ${{ steps.gather_arguments.outputs.use_case }}"
@@ -216,7 +216,7 @@ jobs:
216216
- uses: astral-sh/setup-uv@v5
217217

218218
- name: Download results
219-
uses: actions/download-artifact@v4
219+
uses: actions/download-artifact@v6
220220
with:
221221
pattern: benchmark-results-*
222222
path: ./tmp/results/

.github/workflows/benchmark_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
GIRDER_API_KEY: ${{ secrets.GIRDER }}
1313
name: Move to production
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616

1717
- uses: astral-sh/setup-uv@v5
1818

@@ -68,7 +68,7 @@ jobs:
6868

6969
name: Move to denied
7070
steps:
71-
- uses: actions/checkout@v5
71+
- uses: actions/checkout@v6
7272

7373
- uses: astral-sh/setup-uv@v5
7474

.github/workflows/ci.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,20 @@ jobs:
1717
if: "!contains(github.event.head_commit.message, 'wheel skip')"
1818
steps:
1919

20-
- uses: actions/checkout@v5
20+
21+
- uses: actions/checkout@v6
2122

2223
- uses: astral-sh/setup-uv@v5
2324

2425
- name: Sync deps
2526
run: uv sync
2627

28+
2729
- name: Build
2830
run: uv build
2931

3032
- name: Upload Wheel
31-
uses: actions/upload-artifact@v4
33+
uses: actions/upload-artifact@v5
3234
with:
3335
name: wheel-artifacts
3436
path: dist/*.whl
@@ -39,12 +41,12 @@ jobs:
3941
needs: build_wheel
4042
if: "!contains(github.event.head_commit.message, 'unit_tests skip')"
4143
steps:
42-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4345

4446
- uses: astral-sh/setup-uv@v5
4547

4648
- name: Download packages
47-
uses: actions/download-artifact@v4
49+
uses: actions/download-artifact@v6
4850
with:
4951
name: wheel-artifacts
5052
path: dist/
@@ -130,8 +132,9 @@ jobs:
130132
if: "!contains(github.event.head_commit.message, 'docs skip')"
131133
steps:
132134

135+
133136
- uses: astral-sh/setup-uv@v5
134-
- uses: actions/checkout@v5
137+
- uses: actions/checkout@v6
135138

136139
- name: Install credentials
137140
run: echo https://$GITHUB_OAUTH:@github.com > $HOME/.git-credentials
@@ -142,7 +145,7 @@ jobs:
142145
run: npm ci --verbose
143146

144147
- name: Download
145-
uses: actions/download-artifact@v4
148+
uses: actions/download-artifact@v6
146149
with:
147150
name: wheel-artifacts
148151
path: dist/
@@ -183,7 +186,7 @@ jobs:
183186
runs-on: self-feelpp
184187
name: Build docker, tag and push
185188
steps:
186-
- uses: actions/checkout@v5
189+
- uses: actions/checkout@v6
187190

188191
- name: Docker meta
189192
id: meta
@@ -227,10 +230,10 @@ jobs:
227230
contents: write
228231
id-token: write
229232
steps:
230-
- uses: actions/checkout@v5
233+
- uses: actions/checkout@v6
231234

232235
- name: Download Wheel Packages
233-
uses: actions/download-artifact@v4
236+
uses: actions/download-artifact@v6
234237
with:
235238
name: wheel-artifacts
236239
path: dist/

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
- name: Set up Git
3333
run: |

docs/modules/ROOT/pages/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ ifdef::env-github,env-browser,env-vscode[:imagesprefix: ../images/]
33
= Feel++ Benchmarks
44
:page-layout: toolboxes
55
:page-tags: catalog, dashboard_index
6-
:docdatetime: 2025-12-10T10:04:57
6+
:docdatetime: 2025-12-11T00:17:39

0 commit comments

Comments
 (0)