You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2017/06/19 16:00:52 UTC

[couchdb] branch jenkins-pipeline updated (ff74458 -> 3265b32)

This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a change to branch jenkins-pipeline
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard ff74458  Make max OS spawned couchjs processes = 2
     new 3265b32  Set max os processes to 3 and max memory to 8MB

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ff74458)
            \
             N -- N -- N   refs/heads/jenkins-pipeline (3265b32)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile | 2 +-
 dev/run  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@couchdb.apache.org" <co...@couchdb.apache.org>'].

[couchdb] 01/01: Set max os processes to 3 and max memory to 8MB

Posted by va...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch jenkins-pipeline
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 3265b3291325446ba088ada22e74fccd9cd08f4b
Author: Nick Vatamaniuc <va...@apache.org>
AuthorDate: Mon Jun 19 12:00:41 2017 -0400

    Set max os processes to 3 and max memory to 8MB
---
 Makefile | 1 +
 dev/run  | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index f6084c4..7021c55 100644
--- a/Makefile
+++ b/Makefile
@@ -116,6 +116,7 @@ endif
 	@rm -rf dev/lib
 	@dev/run -n 1 -q --with-admin-party-please \
             -c 'startup_jitter=0' \
+            -c 'os_process_limit=3' \
             test/javascript/run $(suites)
 
 
diff --git a/dev/run b/dev/run
index 8af3ac4..cd78d3c 100755
--- a/dev/run
+++ b/dev/run
@@ -265,10 +265,10 @@ def hack_default_ini(ctx, node, contents):
     mainjs = os.path.join(ctx['rootdir'], "share", "server", "main.js")
     coffeejs = os.path.join(ctx['rootdir'], "share", "server", "main-coffee.js")
 
-    repl = toposixpath("javascript = %s %s" % (couchjs, mainjs))
+    repl = toposixpath("javascript = %s -S 8388608  %s" % (couchjs, mainjs))
     contents = re.sub("(?m)^javascript.*$", repl, contents)
 
-    repl = toposixpath("coffeescript = %s %s" % (couchjs, coffeejs))
+    repl = toposixpath("coffeescript = %s -S 8388608 %s" % (couchjs, coffeejs))
     contents = re.sub("(?m)^coffeescript.*$", repl, contents)
 
     return contents

-- 
To stop receiving notification emails like this one, please contact
"commits@couchdb.apache.org" <co...@couchdb.apache.org>.