Skip to content

Commit dae54c8

Browse files
Auto merge of #116450 - Kobzol:automation-try-bors-ci, r=<try>
Enable new bors try branch to run on CI Needed to fix [this error](https://github.com/rust-lang/rust/actions/runs/6420044833/job/17431256956). Inspired by #99988 r? @Mark-Simulacrum
2 parents 90f3a6f + bb74317 commit dae54c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ci/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ source "$ci_dir/shared.sh"
4747

4848
export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
4949

50-
if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf; then
50+
if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf || isCiBranch automation/bors/try; then
5151
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
5252
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.metrics"
5353
HAS_METRICS=1

src/ci/scripts/verify-channel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ IFS=$'\n\t'
88

99
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
1010

11-
if isCiBranch auto || isCiBranch try || isCiBranch try-perf; then
11+
if isCiBranch auto || isCiBranch try || isCiBranch try-perf || isCiBranch automation/bors/try; then
1212
echo "channel verification is only executed on PR builds"
1313
exit
1414
fi

0 commit comments

Comments
 (0)