-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Include ubuntu-24.04 in CI #1441
Comments
Ironically we were already using ubuntu-24.04 in But amazingly it fails... https://github.com/versatica/mediasoup/actions/runs/10319604062/job/28568334351?pr=1440 Ok, we must do same as we do for macos versions: # We need to install pip invoke manually.
- if: runner.os != 'macOS'
name: pip3 install invoke
run: pip3 install invoke
# In macOS we need to specify this option.
- if: runner.os == 'macOS'
name: pip3 install --break-system-packages invoke
run: pip3 install --break-system-packages invoke |
Yes, on 24.04 they don't like you installing packages directly, see qtile/qtile#4804 |
NOTE: In |
I believe by upgrading to 24.04 you'll make it impossible to use on older Ubuntu versions (and other distros) due to expecting newer Gibc version. So you should use the older version instead of newer. |
That's exactly what I said, yes :) |
But you said you're upgrading from 22.04 to even newer 24.04 🤔 |
I literally said in my previous comment:
😀 |
I can't read today 🤦 |
ubuntu-24.04
is already available: actions/runner-images#9848Let's add it in all our CI actions.
The text was updated successfully, but these errors were encountered: