Skip to content

Commit

Permalink
Merge pull request #509 from SUSE/tw_size
Browse files Browse the repository at this point in the history
Reduce tumbleweed sizes
  • Loading branch information
dcermak authored Jun 18, 2024
2 parents 6f42269 + 6091337 commit 3b85392
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ def test_base_size(auto_container: ContainerData, container_runtime):
}
elif OS_VERSION in ("basalt", "tumbleweed"):
base_container_max_size: Dict[str, int] = {
"x86_64": 120,
"aarch64": 140,
"ppc64le": 172,
"s390x": 115,
"x86_64": 106,
"aarch64": 130,
"ppc64le": 142,
"s390x": 113,
}
# 15.5/15.6 are hopefully only temporary large due to PED-5014
elif OS_VERSION in ("15.6",):
Expand Down
12 changes: 6 additions & 6 deletions tests/test_minimal.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
}

TW_MINIMAL_IMAGE_MAX_SIZE: Dict[str, int] = {
"x86_64": 51,
"aarch64": 51,
"s390x": 49,
"ppc64le": 59,
"aarch64": 65,
"ppc64le": 58,
"s390x": 41,
"x86_64": 49,
}

#: size limits of the micro image per architecture in MiB
Expand All @@ -35,8 +35,8 @@

TW_MICRO_IMAGE_MAX_SIZE: Dict[str, int] = {
"x86_64": 34,
"aarch64": 36,
"s390x": 34,
"aarch64": 42,
"s390x": 28,
"ppc64le": 41,
}

Expand Down

0 comments on commit 3b85392

Please sign in to comment.