From 0de8cc864c2790196142b330735c74e434a754dd Mon Sep 17 00:00:00 2001 From: activatekillswitch Date: Sat, 31 May 2025 14:55:49 +0100 Subject: [PATCH] build(linux): add Ubuntu 25.04 support to linux_build.sh (#3919) Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> --- scripts/linux_build.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scripts/linux_build.sh b/scripts/linux_build.sh index 1ac5f162..b391f7dc 100755 --- a/scripts/linux_build.sh +++ b/scripts/linux_build.sh @@ -564,6 +564,15 @@ elif grep -q "Ubuntu 24.04" /etc/os-release; then cuda_build="520.61.05" gcc_version="11" nvm_node=0 +elif grep -q "Ubuntu 25.04" /etc/os-release; then + distro="ubuntu" + version="25.04" + package_update_command="${sudo_cmd} apt-get update" + package_install_command="${sudo_cmd} apt-get install -y" + cuda_version="11.8.0" + cuda_build="520.61.05" + gcc_version="11" + nvm_node=0 else echo "Unsupported Distro or Version" exit 1