We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a99c9d6 commit edae201Copy full SHA for edae201
src/ci/run.sh
@@ -90,7 +90,9 @@ else
90
fi
91
92
# Same for overflow checks
93
- if [ "$NO_OVERFLOW_CHECKS" = "" ]; then
+ # 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
96
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-overflow-checks"
97
98
0 commit comments