Skip to content

Commit edae201

Browse files
committed
ci: temporarily disable overflow checks again.
. #89776 enabled overflow checks in CI but these lead to two failures already: #90042 (comment) #90222 (comment) The (first?) problem has been identified: #90227 This PR temporarily disables the overflow checks again so we don't have to deal with the "spurious" CI failures until rustc-rayon is fixed. Zulip discussion: https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/ci.20failed.20with.20.20.22attempt.20to.20subtract.20with.20overflow.22
1 parent a99c9d6 commit edae201

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ci/run.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ else
9090
fi
9191

9292
# Same for overflow checks
93-
if [ "$NO_OVERFLOW_CHECKS" = "" ]; then
93+
# Note: temporarily disabled to prevent CI failures due to overflow in rustc-rayon dependency
94+
# Reenable once https://github.com/rust-lang/rust/issues/90227 is fixed
95+
if [ "$NO_OVERFLOW_CHECKS" = "" ] && false; then
9496
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-overflow-checks"
9597
fi
9698

0 commit comments

Comments
 (0)