Skip to content

Commit

Permalink
Automatically use S3 remote on Ubuntu 22.04 (#792)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoWilken authored Mar 16, 2023
1 parent f0e33bf commit 1aed0ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions alibuild_helpers/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@ def matchValidArch(architecture):
RHEL6 / SLC6 compatible: slc6_x86-64
RHEL7 / CC7 compatible: slc7_x86-64
RHEL8 / CC8 compatible: slc8_x86-64
Ubuntu 18.04 compatible: ubuntu1804_x86-64
Ubuntu 20.04 compatible: ubuntu2004_x86-64
Ubuntu 22.04 compatible: ubuntu2204_x86-64
Fedora 33 compatible: fedora33_x86-64
Fedora 34 compatible: fedora34_x86-64
Expand All @@ -354,7 +354,7 @@ def matchValidArch(architecture):
Big Sur: osx_arm64
"""

S3_SUPPORTED_ARCHS = "slc7_x86-64", "slc8_x86-64", "ubuntu2004_x86-64"
S3_SUPPORTED_ARCHS = "slc7_x86-64", "slc8_x86-64", "ubuntu2004_x86-64", "ubuntu2204_x86-64"

def finaliseArgs(args, parser):

Expand Down

0 comments on commit 1aed0ee

Please sign in to comment.