-
Notifications
You must be signed in to change notification settings - Fork 147
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
Fix codeql to work on newer version of Ubuntu #6445
Conversation
it says
so idk maybe we can remove this step entirely ? (until 2026 and the next LTS release |
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.
Thanks!
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.
Doesn't really need another approval, but since I was looking anyway :-)
Idk why the azure stuff is not running ? 🤔 |
9a5ba7d
to
2dbe6d0
Compare
## Summary of changes Fix broken github status action ## Reason for change The github status upload is broken, because we're not splitting on `;` as expected ## Implementation details Add missing `export IFS=";"`, accidentally deleted in #6407 ## Test coverage This is the test ## Other details Currently blocking #6445
since Github updated their runners to use a more recent version of ubuntu, it broke the codeQL job because it couldn't find LLVM using the new version name (
noble
).The error we're seeing is
The repository 'http://apt.llvm.org/noble llvm-toolchain-noble-16 Release' does not have a Release file.
It turns out Clang-16 is available by default in ubuntu Noble (24.04), so we don't need the script at all and we can just install from apt.
DEBIAN_FRONTEND=noninteractive
is necessary to prevent a prompt from tzdata asking us to choose our timezone.