Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

quick workaround for CI issue with libc & MSRV (Rust 1.56) #2905

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

brodycj
Copy link

@brodycj brodycj commented Jan 2, 2025

Should resolve a build issue in PR #2904 & other recent PRs


NOTE: CI issue with Clippy is resolved in other PR #2904 - hopeful we can get both of these PRs reviewed & merged soon :)

Comment on lines +112 to +114
# QUICK WORKAROUND FOR CI ISSUE with libc & MSRV
- run: cargo add libc@=0.2.153 --no-default-features -p futures-executor
- run: git clean -dfX
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should update something like this:

Suggested change
# QUICK WORKAROUND FOR CI ISSUE with libc & MSRV
- run: cargo add libc@=0.2.153 --no-default-features -p futures-executor
- run: git clean -dfX
- name: Workaround for CI issue in futures-executor between libc & MSRV
run: |
cargo add libc@=0.2.153 --no-default-features -p futures-executor
git clean -dfX

similar to this:

It may be possible for this to work with some newer version of libc, may need some time for trial-and-error.

I am actually not 100% happy about this kind of workaround. IMHO it should be possible to simply install & work with MSRV.

@taiki-e
Copy link
Member

taiki-e commented Jan 3, 2025

libc is not dev-dep, so we have to bump MSRV of utility crates, like #2733 did.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants