Skip to content

Commit

Permalink
Merge pull request #41 from mikhailnov/201905
Browse files Browse the repository at this point in the history
Set default arches for rosa2019.05 and rosa2021.15 (future fork of rosa2021.1)
  • Loading branch information
fedya authored Mar 21, 2023
2 parents 54697c3 + 0537f01 commit 26f7d4c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions abf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1409,9 +1409,15 @@ def auto_resolve():
if str(build_repositories[0]).find("rosa2019.0") >= 0 or str(build_repositories[0]).find("rosa2016.1") >= 0:
try_arches = ['i586','x86_64']

if str(build_repositories[0]).find("rosa2019.05") >= 0:
try_arches = ['i686', 'x86_64']

if str(build_repositories[0]).find("rosa2021.1") >= 0 or str(build_repositories[0]).find("rosa2023.1") >=0:
try_arches = ['i686','x86_64','aarch64', 'riscv64', 'e2kv4']

if str(build_repositories[0]).find("rosa2021.15") >= 0:
try_arches = ['i686', 'x86_64', 'aarch64', 'e2kv4']

if str(build_repositories[0]).find("openmandriva") >= 0 or str(build_repositories[0]).find("4.2") >= 0:
try_arches = ['x86_64','znver1','aarch64']

Expand Down

0 comments on commit 26f7d4c

Please sign in to comment.