mirror of
https://abf.rosa.ru/djam/abf-console-client-src.git
synced 2025-02-23 09:52:48 +00:00
Don't try to build for recently appeared i686 on Rosa Fresh
This commit is contained in:
parent
37427451b7
commit
6a638cbb00
1 changed files with 5 additions and 0 deletions
5
abf.py
5
abf.py
|
@ -1392,6 +1392,11 @@ def build(return_ids=False):
|
|||
arches.append(a)
|
||||
else:
|
||||
try_arches = ['i586','i686','x86_64']
|
||||
|
||||
# rosa2014.1, rosa2016.1 etc. (Rosa Fresh), but not e.g. rosa-server75 (Rosa-RHEL)
|
||||
if str(build_repositories[0]).find("rosa20") >= 0:
|
||||
try_arches = ['i586','x86_64']
|
||||
|
||||
if str(build_repositories[0]).find("openmandriva") >= 0 or str(build_repositories[0]).find("3.0") >= 0:
|
||||
try_arches = ['i586','x86_64','armv7hnl','aarch64']
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue