Skip to content

Commit dcc9672

Browse files
committed
Try to fix checkout
1 parent a9b70df commit dcc9672

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/libcxx-build-and-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ jobs:
293293
with:
294294
fetch-depth: 0 # This job requires access to all the Git branches so it can diff against (usually) main
295295
fetch-tags: true
296-
ref: main
296+
# ref: main
297297
- name: benchmarks
298298
run: libcxx/utils/ci/run-buildbot benchmark-comparison
299299
env:

libcxx/utils/ci/run-buildbot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ benchmark-comparison)
547547
LIT_ARGS="-sv -j1 --param optimization=speed libcxx/test/benchmarks/hash.bench.cpp libcxx/test/benchmarks/join_view.bench.cpp"
548548

549549
if [[ "${GITHUB_BASE_REF}" != "" ]]; then # triggered from a PR
550-
baseline_commit=$(git merge-base refs/heads/${GITHUB_BASE_REF} ${GITHUB_SHA})
550+
baseline_commit=$(git merge-base refs/remotes/origin/${GITHUB_BASE_REF} ${GITHUB_SHA})
551551
else
552552
baseline_commit=$(git merge-base main HEAD)
553553
fi

0 commit comments

Comments
 (0)