Skip to content

Commit fdf32ee

Browse files
committed
Auto merge of rust-lang#116450 - Kobzol:automation-try-bors-ci, r=Mark-Simulacrum
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 rust-lang#99988 Also, removes `try-merge` from the workflow. It shouldn't have been added in rust-lang#116353. r? `@Mark-Simulacrum`
2 parents e9addfd + 098dd97 commit fdf32ee

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

Diff for: .github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ name: CI
2222
- try
2323
- try-perf
2424
- automation/bors/try
25-
- automation/bors/try-merge
2625
- master
2726
pull_request:
2827
branches:

Diff for: src/ci/github-actions/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ on:
282282
- try
283283
- try-perf
284284
- automation/bors/try
285-
- automation/bors/try-merge
286285
- master
287286
pull_request:
288287
branches:

Diff for: src/ci/run.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ 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 || \
51+
isCiBranch automation/bors/try; then
5152
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
5253
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.metrics"
5354
HAS_METRICS=1

Diff for: src/ci/scripts/verify-channel.sh

+1-1
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)