We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Its failing because the toolchain version of apt install llvm is different from the one use by rustc.
apt install llvm
rustc
The solution is to use install the llvm-tools rustup component so that we do not rely on Ubuntu's llvm version to match rustc's.
llvm-tools
TODO:
build-tools
test-with-coverage.sh
rustup run <toolchain> llvm-xyz
llvm-xyz
The text was updated successfully, but these errors were encountered:
Both got merged and things work inside the container on my machine... but fail in actual CI. Hoping that the tests are just flaky.
Sorry, something went wrong.
Stevenjin8
No branches or pull requests
Its failing because the toolchain version of
apt install llvm
is different from the one use byrustc
.The solution is to use install the
llvm-tools
rustup component so that we do not rely on Ubuntu's llvm version to match rustc's.TODO:
llvm-tools
rustup component tobuild-tools
image https://rust-lang.github.io/rustup/concepts/components.html Add rustup llvm toolchain tools#3091.test-with-coverage.sh
script to userustup run <toolchain> llvm-xyz
instead ofllvm-xyz
. Use rustup llvm tools #1387The text was updated successfully, but these errors were encountered: