-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update base-image version to ubuntu:24.04 #663
Comments
It would be good to get this done before: actions/runner-images#10636 While not necessary, it will lead to less complexity in our setup. Normally, all our actions run in a docker container anyways, which makes this not really urgent. However, the change-list linting in our CI does run clang-tidy on our code directly from the CI container (using ubuntu-latest) |
Unfortunately, there are some errors when installing conan the same way we did before:
it is suggested to instead directly install |
We are currently on
ubuntu:22.04
. For example this limits our gcc features, as that image version usesgcc 11.4.0
whereas the new long-term-support ubuntu image (ubuntu:24.04
) providesgcc 13.3.0
When this is done, our uses of
std::find_if
should be changed tostd::ranges::find_if
to match our code styleThe text was updated successfully, but these errors were encountered: