Skip to content

Commit

Permalink
Support downloading packages for ARM (#858)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf authored Jul 5, 2024
1 parent 538a49b commit 301a1e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion alibuild_helpers/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,9 @@ def matchValidArch(architecture):
Fedora 33 compatible: fedora33_x86-64
Fedora 34 compatible: fedora34_x86-64
On Linux, ARM:
RHEL9 / ALMA9 compatible: slc9_aarch64
On Linux, POWER8 / PPC64 (little endian):
RHEL7 / CC7 compatible: slc7_ppc64
Expand All @@ -389,7 +392,7 @@ def matchValidArch(architecture):
"""

# 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"
S3_SUPPORTED_ARCHS = "slc7_x86-64", "slc8_x86-64", "ubuntu2004_x86-64", "ubuntu2204_x86-64", "slc9_x86-64", "slc9_aarch64"

def finaliseArgs(args, parser):

Expand Down

0 comments on commit 301a1e3

Please sign in to comment.