You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1204 Increase used memory size of all buildsteps (#1205)
Fixes#1204
# Description
Since a week of 2 we noticed that our build pipeline was getting
unstable.
We tried to remedy this with moving our builds to docker containers
This gave us control of what is being installed on the systems that are
running our pipelines.
However we noticed that some unittests/examples were still failing.
@JoerivanEngelen found out that the cause of the failing tests is memory
related.
After a quick check I discovered that the docker container have a
default memory size of 1G which is just not enough.
This PR addresses that. All pipeline steps now have at least 16G. The
unit tests and example pipelines have 32G.
I further also increased the number of cores available the build steps.
All pipelines have at least 4 cores. The unit tests and example
pipelines have 8.
# Checklist
<!---
Before requesting review, please go through this checklist:
-->
- [ ] Links to correct issue
- [ ] Update changelog, if changes affect users
- [ ] PR title starts with ``Issue #nr``, e.g. ``Issue #737``
- [ ] Unit tests were added
- [ ] **If feature added**: Added/extended example
0 commit comments