Skip to content

Commit 2a47052

Browse files
committed
Merge branch 'main' into feat/binding-primitive-libs
2 parents a8df155 + 433c527 commit 2a47052

File tree

26 files changed

+235
-103
lines changed

26 files changed

+235
-103
lines changed

.github/workflows/benchmark-call.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ jobs:
182182
- name: Set working directory
183183
id: set-working-dir
184184
run: |
185-
WORKING_DIR=$(jq -r --arg name "${{ inputs.benchmark_name }}" '
185+
WORKING_DIR=$(jq -r --arg id "${{ inputs.benchmark_id }}" '
186186
.benchmarks[] |
187-
select(.name == $name) |
187+
select(.id == $id) |
188188
.working_directory
189189
' ./ci/benchmark-config.json)
190190
RELATIVE_PATH=$(python3 -c "import os.path; print(os.path.relpath('.', '$WORKING_DIR'))")

.github/workflows/benchmarks.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,9 @@ jobs:
199199
- name: Download all metric json files from S3
200200
run: |
201201
matrix=$(echo '${{ needs.create-matrix.outputs.matrix }}')
202+
names=$(echo $matrix | jq -r '.[] | "\(.id)"')
203+
names_list=$(echo -n "$names" | paste -sd "," -)
204+
202205
json_files=$(echo $matrix | jq -r '
203206
.[] |
204207
"\(.id)-${{ env.CURRENT_SHA }}.json"')
@@ -224,6 +227,7 @@ jobs:
224227
225228
openvm-prof --json-paths "${json_file_list}" \
226229
--prev-json-paths "${prev_json_file_list}" \
230+
--names "${names_list}" \
227231
summary \
228232
--benchmark-results-link "https://github.com/${{ github.repository }}/blob/benchmark-results/${BENCHMARK_RESULTS_PATH}" \
229233
--summary-md-path summary.md

.github/workflows/pr-title.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737
refactor
3838
docs
3939
ci
40+
release
41+
audit
4042
continue-on-error: true
4143
- name: Add PR Comment for Invalid Title
4244
if: steps.lint_pr_title.outcome == 'failure'

0 commit comments

Comments
 (0)