-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
Build error for MUSL target #83
Comments
Yeah I don't know what toolchain I would not recommend using that action; it is not maintained. |
So hold on, what do you suggest that I do here? Just drop |
I just came across the same issue as @orhun in a different situation while using: - uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.69
targets: 'x86_64-unknown-linux-musl' |
It looks like a |
Hello! 🐻
I was using this action to install Rust for my release workflow: https://github.com/orhun/systeroid/blob/af75cefa3933c1ceda6ee292d43fcec353f5e2ae/.github/workflows/cd.yml#L81
However, I got the following error while building for
x86_64-unknown-linux-musl
target:Full logs: https://github.com/orhun/systeroid/actions/runs/4709456927/jobs/8352603665
I'm already installing
musl-tools
in the previous step. Do I need to install something else as well?I switched back to
actions-rs/toolchain
temporarily and everything worked fine. I'm suspecting this might be due to the usage ofactions-rs/cargo
for the build step. What do you think?The text was updated successfully, but these errors were encountered: