Skip to content

Commit

Permalink
Fully support Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
singiamtel authored and ktf committed Aug 8, 2024
1 parent 9967470 commit 3a9a097
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
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

0 comments on commit 3a9a097

Please sign in to comment.