Skip to content

Commit bd11d29

Browse files
committed
Fix bisect workflow baseline seeding and artifact upload
Drop the unsupported run_group_id kwarg from make_sample_metadata and scope the artifact upload to runner-owned result dirs, avoiding the root-owned docker jit/kit cache that broke the upload scan.
1 parent d38e321 commit bd11d29

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/perf-gate-bisect.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ jobs:
169169
target_branch="bisection-ci",
170170
trusted_source="bisection_ci_good_ref",
171171
commit_sha=os.environ["GOOD_REF"],
172-
run_group_id=f"bisection-ci-good-{idx}",
173172
)
174173
update_baseline(
175174
output_dir / "local-baselines",
@@ -238,6 +237,13 @@ jobs:
238237
uses: actions/upload-artifact@v7
239238
with:
240239
name: perf-gate-bisection-${{ github.run_id }}
241-
path: perf-output/bisection-ci/
240+
# Only the runner-owned result dirs. The docker jit/kit caches are
241+
# written root-owned inside the container and would fail to scan.
242+
path: |
243+
perf-output/bisection-ci/good-artifacts/
244+
perf-output/bisection-ci/gate-artifacts/
245+
perf-output/bisection-ci/local-baselines/
246+
perf-output/bisection-ci/plan/
247+
perf-output/bisection-ci/run/
242248
retention-days: 14
243249
if-no-files-found: warn

0 commit comments

Comments
 (0)