This is an automated email from the ASF dual-hosted git repository.
eze pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new a6c612c Changing to -j2 for makes. We can hit OOM killer issues, and
these are 4 core boxes anyway, so hopefully bringing it down may limit some
usage
new 0e175e6 Merge pull request #5 from ezelkow1/main
a6c612c is described below
commit a6c612cc553d0510066abf2cb07bdd482b558e3d
Author: Evan Zelkowitz <[email protected]>
AuthorDate: Mon Mar 15 14:55:36 2021 -0700
Changing to -j2 for makes. We can hit OOM killer issues, and these are 4
core boxes anyway, so hopefully bringing it down may limit some usage
---
jenkins/fedora.pipeline | 2 +-
jenkins/ubuntu.pipeline | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/jenkins/fedora.pipeline b/jenkins/fedora.pipeline
index ae9aeaf..ce86f0f 100644
--- a/jenkins/fedora.pipeline
+++ b/jenkins/fedora.pipeline
@@ -26,7 +26,7 @@ pipeline {
sh('ls')
sh('autoreconf -fiv')
sh('./configure --enable-experimental-plugins')
- sh('make -j')
+ sh('make -j2')
}
}
}
diff --git a/jenkins/ubuntu.pipeline b/jenkins/ubuntu.pipeline
index 7dc2729..235b1cb 100644
--- a/jenkins/ubuntu.pipeline
+++ b/jenkins/ubuntu.pipeline
@@ -26,7 +26,7 @@ pipeline {
sh('ls')
sh('autoreconf -fiv')
sh('./configure --enable-experimental-plugins')
- sh('make -j')
+ sh('make -j2')
}
}
}