-
Notifications
You must be signed in to change notification settings - Fork 13.5k
feat(build): centralize LLVM_VERSION #142786
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
# ignore-tidy-linelength | ||
|
||
# To keep docker / non-docker builds in sync | ||
|
||
# renovate: datasource=github-releases depName=llvm/llvm-project versioning=semver-coerced extractVersion=^llvmorg-(?<version>\d+\.\d+\.\d+(?:.*)) | ||
export LLVM_VERSION=20.1.3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe put this in shared.sh instead? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would be possible of course. I didn't know if all those functions would be unwanted in the non-docker builds, that's why I separated the shared versions from shared functions... |
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be automatically updated I think. LLVM updates are more risky than regular dependency updates and frequently need changes on the rust side.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
renovate doesn't merge automatically, maintainers would still have to do that manually like for dependabot.
For what it's worth, you saw that I didn't enable the regex customManager for these lines in renovate.json5...