Skip to content

Commit f9cba63

Browse files
committed
Auto merge of #99988 - rylev:allow-try-perf, r=Mark-Simulacrum
Allow try-perf branch to run in CI We want to be able to build artifacts through the try-perf branch but without this change the CI fails early. r? `@Mark-Simulacrum`
2 parents 3405e40 + 0942efd commit f9cba63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ else
4343
PYTHON="python2"
4444
fi
4545

46-
if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try; then
46+
if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf; then
4747
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
4848
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.metrics"
4949
fi

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; then
11+
if isCiBranch auto || isCiBranch try || isCiBranch try-perf; then
1212
echo "channel verification is only executed on PR builds"
1313
exit
1414
fi

0 commit comments

Comments
 (0)