-
Notifications
You must be signed in to change notification settings - Fork 13
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
Ubuntu 24.04 support #266
base: main
Are you sure you want to change the base?
Ubuntu 24.04 support #266
Conversation
@@ -8,5 +8,6 @@ | |||
{ "env": "lab", "os": "windows-2025", "arch": "x64", "tls": "schannel", "io": "wsk" }, | |||
{ "env": "lab", "os": "ubuntu-20.04", "arch": "x64", "tls": "openssl", "io": "epoll" }, | |||
{ "env": "lab", "os": "ubuntu-22.04", "arch": "x64", "tls": "openssl3", "io": "epoll" }, | |||
{ "env": "lab", "os": "ubuntu-22.04", "arch": "x64", "tls": "openssl3", "io": "xdp" } | |||
{ "env": "lab", "os": "ubuntu-24.04", "arch": "x64", "tls": "openssl3", "io": "epoll" }, |
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.
First we need to onboard an Ubuntu 24.04 lab runner before we can merge this.
@@ -48,6 +48,8 @@ if ($Os -eq "windows-2025") { | |||
$image = "MicrosoftWindowsServer:WindowsServer:2022-datacenter-g2:latest" | |||
} elseif ($Os -eq "windows-2019") { | |||
$image = "MicrosoftWindowsServer:WindowsServer:2019-datacenter-gensecond:17763.5576.240304" | |||
} elseif ($Os -eq "ubuntu-24.04") { |
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.
FYI this script has been re-purposed to be used as a manual utility tool for quickly spinning up a test VM using Azure CLI. We are rotating this out of the pipeline due to security reasons. We don't need to worry about updating this.
No description provided.