Skip to content

Commit 3b11a04

Browse files
committed
ci: Pin the nightly toolchain for i686-pc-windows-gnu
Pin i686-pc-windows-gnu to nightly-2025-02-07 until [1] is resolved. [1]: rust-lang/rust#136795
1 parent 8187f4b commit 3b11a04

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ jobs:
6868
os: windows-2025
6969
- target: i686-pc-windows-gnu
7070
os: windows-2025
71-
channel: nightly-i686-gnu
71+
# FIXME: pinned due to https://github.com/rust-lang/rust/issues/136795
72+
channel: nightly-2025-02-07-i686-gnu
7273
- target: x86_64-pc-windows-gnu
7374
os: windows-2025
7475
channel: nightly-x86_64-gnu

crates/libm-test/src/precision.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -527,12 +527,7 @@ fn int_float_common<F1: Float, F2: Float>(
527527
}
528528

529529
// Our bessel functions blow up with large N values
530-
if ctx.basis == Musl
531-
&& (ctx.base_name == BaseName::Jn
532-
|| ctx.base_name == BaseName::Yn
533-
|| ctx.base_name == BaseName::Jnf
534-
|| ctx.base_name == BaseName::Ynf)
535-
{
530+
if ctx.basis == Musl && (ctx.base_name == BaseName::Jn || ctx.base_name == BaseName::Yn) {
536531
if input.0 > 4000 {
537532
return XFAIL_NOCHECK;
538533
} else if input.0 > 1000 {

0 commit comments

Comments
 (0)