Skip to content

Commit

Permalink
Drop armv7hl and i686
Browse files Browse the repository at this point in the history
ARMv7 was never a RHEL architecture, and i686 multilibs have been dropped
completely in RHEL 10 and ELN.
  • Loading branch information
yselkowitz committed Jul 3, 2024
1 parent 5565d36 commit 847fb88
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 0 additions & 2 deletions config_specs/repository_v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,7 @@ data:
#
# (mandatory field)
architectures:
- armv7hl
- aarch64
- i686
- ppc64le
- s390x
- x86_64
Expand Down
3 changes: 1 addition & 2 deletions eln_repo_split_prototype.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def load_settings():
# "aarch64"
# ],
# "x86_64": [
# "i686",
# "x86_64"
# ]
# },
Expand Down Expand Up @@ -1092,4 +1091,4 @@ def main():


if __name__ == "__main__":
main()
main()
2 changes: 1 addition & 1 deletion feedback_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def load_settings():

settings["max_subprocesses"] = 10

settings["allowed_arches"] = ["armv7hl", "aarch64", "ppc64le", "s390x", "x86_64"]
settings["allowed_arches"] = ["aarch64", "ppc64le", "s390x", "x86_64"]

settings["weird_packages_that_can_not_be_installed"] = ["glibc32"]

Expand Down
2 changes: 1 addition & 1 deletion test_config_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def create_mock_settings():
settings = {}
settings["configs"] = "input/configs"
settings["strict"] = True
settings["allowed_arches"] = ["armv7hl","aarch64","ppc64le","s390x","x86_64"]
settings["allowed_arches"] = ["aarch64","ppc64le","s390x","x86_64"]

return settings

Expand Down

0 comments on commit 847fb88

Please sign in to comment.