iilyak commented on issue #1715: Broken pipe errors from TravisCI URL: https://github.com/apache/couchdb/issues/1715#issuecomment-436241078 Additional debugging info for the case. ``` diff --git a/.travis.yml b/.travis.yml index 01b2862a3..89e21baf2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,6 +49,7 @@ env: # Then comment this section out before_script: + - ulimit -a - rm -rf /tmp/couchjslogs - mkdir -p /tmp/couchjslogs - ./configure -c --disable-docs --disable-fauxton diff --git a/Makefile b/Makefile index 0ab7b4eed..09757fe2c 100644 --- a/Makefile +++ b/Makefile @@ -149,6 +149,7 @@ check: all eunit: export BUILDDIR = $(shell pwd) eunit: export ERL_AFLAGS = -config $(shell pwd)/rel/files/eunit.config eunit: couch + @ulimit -a && exit 1 @$(REBAR) setup_eunit 2> /dev/null @$(REBAR) -r eunit $(EUNIT_OPTS) ``` https://travis-ci.org/apache/couchdb/jobs/451351684 # before_script ``` core file size (blocks, -c) unlimited data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 241238 max locked memory (kbytes, -l) 64 max memory size (kbytes, -m) unlimited open files (-n) 30000 pipe size (512 bytes, -p) 8 POSIX message queues (bytes, -q) 819200 real-time priority (-r) 0 stack size (kbytes, -s) 8192 cpu time (seconds, -t) unlimited max user processes (-u) unlimited virtual memory (kbytes, -v) unlimited file locks (-x) unlimited ``` # eunit ``` time(seconds) unlimited file(blocks) unlimited data(kbytes) unlimited stack(kbytes) unlimited coredump(blocks) unlimited memory(kbytes) unlimited locked memory(kbytes) 64 process unlimited nofiles 30000 vmemory(kbytes) unlimited locks unlimited ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
