Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change huge-memory to large-memory #932

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/BUILDFARM_NODES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ used (can check this in the Jenkins UI)
| -------- | ----------- | ------------ |
| docker | Node has capabilities to run Docker CI (standard Linux CI) | Linux system with docker installed |
| gpu-reliable | Node has a real GPU able to run simulation for Gazebo | Nvidia card and nvidia-docker installed on Linux |
| huge-memory | Node has enough RAM to run really demanding RAM compilations | Hardware has no less than 16Gb of RAM and can run abichecker on ign-physics |
| large-memory | Node has enough RAM to run really demanding RAM compilations | Hardware has no less than 16Gb of RAM and can run abichecker on ign-physics |
| large-memory | Node has enough RAM to run non trivial compilations | Hardware has no less than 16GB of RAM on Linux |
| linux-arm64 | Node has capabilities to run native arm64 code (mostly used in packaging) | Bare-metal ARM machine |
| linux-armhf | Node has capabilities to run native armhf code (mostly used in packaging) | Bare-metal ARM machine |
Expand Down
6 changes: 3 additions & 3 deletions jenkins-scripts/dsl/ignition.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ gz_software.each { gz_sw ->
extra_str=""
if (gz_sw == 'physics')
{
label Globals.nontest_label("huge-memory")
label Globals.nontest_label("large-memory")
// on ARM native nodes in buildfarm we need to restrict to 1 the
// compilation threads to avoid OOM killer
extra_str += '\nif [ $(uname -m) = "aarch64" ]; then export MAKE_JOBS=1; fi'
Expand Down Expand Up @@ -421,7 +421,7 @@ gz_software.each { gz_sw ->
gz_ci_any_job.with
{
if (gz_sw == 'physics')
label Globals.nontest_label("huge-memory")
label Globals.nontest_label("large-memory")

steps
{
Expand Down Expand Up @@ -529,7 +529,7 @@ void generate_ci_job(gz_ci_job, gz_sw, branch, distro, arch,
gz_ci_job.with
{
if (gz_sw == 'physics')
label Globals.nontest_label("huge-memory")
label Globals.nontest_label("large-memory")

steps {
shell("""\
Expand Down