Skip to content

Commit

Permalink
build-runtime.py: Remove references to heavy
Browse files Browse the repository at this point in the history
We no longer build or use Steam Runtime 1½ heavy'.

Signed-off-by: Simon McVittie <smcv@collabora.com>
  • Loading branch information
smcv authored and TTimo committed Jan 28, 2025
1 parent 1dbd39a commit 1ff0583
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions build-runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,10 +285,7 @@ def parse_args():
% args.output)

if not args.architectures:
if args.suite in ('heavy', 'heavy_beta'):
args.architectures = ['amd64']
else:
args.architectures = list(DEFAULT_ARCHITECTURES)
args.architectures = list(DEFAULT_ARCHITECTURES)

if not args.packages_from and not args.metapackages:
args.metapackages = ['steamrt-ld-library-path', 'steamrt-libs']
Expand Down Expand Up @@ -1287,12 +1284,6 @@ def normalize_tar_entry(entry):
]
seen_apt_lines = set() # type: typing.Set[str]

if args.suite in ('heavy', 'heavy_beta') and not args.upstream_apt_sources:
args.upstream_apt_sources = [
'both https://deb.debian.org/debian jessie main',
'both https://deb.debian.org/debian-security jessie/updates main',
]

for line in list(args.upstream_apt_sources) + list(args.extra_apt_sources):
if line in seen_apt_lines:
continue
Expand Down Expand Up @@ -1417,8 +1408,6 @@ def normalize_tar_entry(entry):
if args.debug_url is None:
if args.suite in ('scout', 'scout_beta'):
args.debug_url = 'https://repo.steampowered.com/steamrt-images-scout/snapshots/'
elif args.suite in ('heavy', 'heavy_beta'):
args.debug_url = 'https://repo.steampowered.com/steamrt-images-heavy/snapshots/'

if args.debug_url:
# Note where people can get the debug version of this runtime
Expand Down

0 comments on commit 1ff0583

Please sign in to comment.