- Update _constraints:

* Less RAM for aarch64 and 32-bit arm
  * Use 'asimdrdm' cpu flag to use aarch64 workers where tests
    are more stable

OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs18?expand=0&rev=35
This commit is contained in:
Adam Majer 2023-01-16 15:43:36 +00:00 committed by Git OBS Bridge
parent 31b7110501
commit 79a8fb6293
2 changed files with 32 additions and 0 deletions

View File

@ -8,4 +8,28 @@
<size unit="M">10000</size>
</physicalmemory>
</hardware>
<overwrite>
<conditions>
<arch>aarch64</arch>
</conditions>
<hardware>
<cpu>
<flag>asimdrdm</flag>
</cpu>
<physicalmemory>
<size unit="G">6</size>
</physicalmemory>
</hardware>
</overwrite>
<overwrite>
<conditions>
<arch>armv6l</arch>
<arch>armv7l</arch>
</conditions>
<hardware>
<physicalmemory>
<size unit="G">5</size>
</physicalmemory>
</hardware>
</overwrite>
</constraints>

View File

@ -27,6 +27,14 @@ Mon Jan 16 14:57:58 UTC 2023 - Adam Majer <adam.majer@suse.de>
- new_python3.patch, icu721_fixes.patch: upstreamed, removed
-------------------------------------------------------------------
Fri Dec 23 11:31:12 UTC 2022 - Guillaume GARDET <guillaume.gardet@opensuse.org>
- Update _constraints:
* Less RAM for aarch64 and 32-bit arm
* Use 'asimdrdm' cpu flag to use aarch64 workers where tests
are more stable
-------------------------------------------------------------------
Thu Nov 10 08:18:42 UTC 2022 - Adam Majer <adam.majer@suse.de>