Skip to content
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

Fully support Ubuntu 24.04 #865

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions alibuild_helpers/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ def matchValidArch(architecture):
RHEL9 / ALMA9 compatible: slc9_x86-64
Ubuntu 20.04 compatible: ubuntu2004_x86-64
Ubuntu 22.04 compatible: ubuntu2204_x86-64
Ubuntu 24.04 compatible: ubuntu2404_x86-64
Fedora 33 compatible: fedora33_x86-64
Fedora 34 compatible: fedora34_x86-64

Expand All @@ -391,8 +392,8 @@ def matchValidArch(architecture):
Apple Silicon: osx_arm64
"""

# When updating this variable, also update docs/user.markdown!
S3_SUPPORTED_ARCHS = "slc7_x86-64", "slc8_x86-64", "ubuntu2004_x86-64", "ubuntu2204_x86-64", "slc9_x86-64", "slc9_aarch64"
# When updating this variable, also update docs/docs/user.md!
S3_SUPPORTED_ARCHS = "slc7_x86-64", "slc8_x86-64", "ubuntu2004_x86-64", "ubuntu2204_x86-64", "ubuntu2404_x86-64", "slc9_x86-64", "slc9_aarch64"

def finaliseArgs(args, parser):

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ provides tarballs for the most common supported architectures.
## Using precompiled packages

By running aliBuild with no special option on CentOS/Alma 7, 8 or 9, or on
Ubuntu 20.04 or 22.04, it will automatically try to
Ubuntu 20.04, 22.04 or 24.04, it will automatically try to
use as many precompiled packages as possible by downloading them from a default
central server. By using precompiled packages you lose the ability to pick some
of them from your system. If you do not want to use precompiled packages and you
Expand Down
Loading