Skip to content

Commit 9b4f1fa

Browse files
ci: add forge benchmarks support in llvm
1 parent c181e45 commit 9b4f1fa

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Forge benchmarks
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
solx-version:
7+
description: 'Prebuilt `solx` version to use. For example: `0.1.0` without `v` prefix. If empty, `solx` will be built.'
8+
required: false
9+
default: ''
10+
llvm-ref:
11+
description: 'LLVM reference branch to use. If empty, the current branch will be used.'
12+
required: false
13+
default: ''
14+
pull_request:
15+
16+
jobs:
17+
forge-benchmarks:
18+
uses: matter-labs/era-compiler-ci/.github/workflows/forge-benchmarks.yaml@v1
19+
secrets: inherit
20+
with:
21+
solx-version: ${{ inputs.solx-version || '' }}
22+
upload-reports: ${{ github.event_name == 'pull_request' }}
23+
print-markdown-tables: 'false' # do not print markdown tables to PRs
24+
llvm-ref: ${{ inputs.llvm-ref || github.ref }}

0 commit comments

Comments
 (0)