-
Notifications
You must be signed in to change notification settings - Fork 55
Fix wording: "C Header" -> "Rust bindings" #125
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
Conversation
The crate does not generate a C header but Rust bindings, but wording and error messages talk about the former, which can cause confusion. Fix the wording. Signed-off-by: Daniel Müller <[email protected]>
|
Seems as if Ubuntu broke the riscv job. |
It works fine on a standard Ubuntu container with equivalent commands run: docker run --rm -it ubuntu:22.04
dpkg --add-architecture riscv64
export release=$(. /etc/os-release && echo "$UBUNTU_CODENAME")
sed -i 's/^deb /deb [arch=amd64] /' /etc/apt/sources.list
printf 'deb [arch=riscv64] http://ports.ubuntu.com/ %s main restricted\n' "${release}" "${release}-updates" "${release}-security" >> /etc/apt/sources.list
apt-get -qq update && apt-get install -y build-essential autopoint gettext libelf-dev:riscv64 zlib1g-dev:riscv64The CI output shows that it's using different repo mirrors for packages tied to Azure/Microsoft?
Notably they seem to have a MS specific mirror logged with both I did try with the GH runner sources modification to use mirrors, but it seems to install the packages fine too: So unclear where the issue is on the runner instance (I haven't tried running the equivalent). FWIW, maybe consider upgrading to Ubuntu 24.04? Instead of the This also requires an So I assume the runner config differs from the above. Might be nicer to inspect via the Ubuntu 24.04 runner which uses the newer sources config approach (old one is deprecated/discouraged). |
|
They screw up regularly and break various things packaging. It's a lost cause. But fixed now... |
The crate does not generate a C header but Rust bindings, but wording and error messages talk about the former, which can cause confusion. Fix the wording.