You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the tests require Linux builds to use split-debuginfo=off and macOS builds to use split-debuginfo=packed. On stable rust, we achieve this with split-debuginfo=packed in Cargo.toml. This works because this option is only supported for macOS. However, nightly rust has stabilized this option for Linux as well, and so now CI is failing.
I can't see how to specify platform specific options in profiles. For example, I would expect something like this to work, but it doesn't:
Currently the tests require Linux builds to use
split-debuginfo=off
and macOS builds to usesplit-debuginfo=packed
. On stable rust, we achieve this withsplit-debuginfo=packed
inCargo.toml
. This works because this option is only supported for macOS. However, nightly rust has stabilized this option for Linux as well, and so now CI is failing.I can't see how to specify platform specific options in profiles. For example, I would expect something like this to work, but it doesn't:
@davidtwco Do you know how to achieve this? Is it intended that all platforms must use the same
split-debuginfo
settings?The text was updated successfully, but these errors were encountered: