Open TheIronBorn opened 5 years ago
Now that's weird. I'm going to ask the infra team for more CI time (cc @pietroalbini ) - we stopped testing these configurations because we are constantly hitting the 50 min limit but now that we are completing support for floating-point math we are hitting the 50 min limit again on tier 1 targets (macosx) so we need to find another solution.
The macOS slowdown is almost surely because you got moved out of the dedicated macs onto the public pool, which probably has noisy neighbors. I don't see that much of a problem to ask for a timeout increase, @rust-lang-nursery/infra?
@TheIronBorn so CI has been bumped to 90 minutes now, i think that should allow us to test for that combination.
I think the problem is that when you pick core_arch
, the into_bits
traits are only implemented from the types in core_arch::..
and not for the types in core::arch::*
. I'd guess the fix here is for these traits to only be implemented for the core::arch::*
types, but I don't know how straight forward that will be.
with
features = ["into_bits", "core_arch"]
and code like this:rust gives:
features = ["into_bits"]
compiles fine.