You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2019/08/07 18:12:58 UTC

[couchdb] branch jenkins-junit-reports-and-jenkins-env updated (4e43805 -> 1371839)

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

kocolosk pushed a change to branch jenkins-junit-reports-and-jenkins-env
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from 4e43805  HEX_HOME is also required
     new 3820f44  Increase default HTTP request timeout to 60s
     new 1371839  Remove old debugging

The 2 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:
 Jenkinsfile              | 8 +-------
 test/elixir/lib/couch.ex | 2 +-
 2 files changed, 2 insertions(+), 8 deletions(-)


[couchdb] 02/02: Remove old debugging

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

kocolosk pushed a commit to branch jenkins-junit-reports-and-jenkins-env
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 13718398a0b252c20eab0d4b8c6d3815cd6fafc2
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Wed Aug 7 14:12:29 2019 -0400

    Remove old debugging
---
 Jenkinsfile | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index f5fbb19..f8f6a2f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -16,7 +16,6 @@
 // DRYing out the Jenkinsfile...
 
 build_and_test = '''
-set
 mkdir -p ${COUCHDB_IO_LOG_DIR}
 rm -rf build
 mkdir build
@@ -24,12 +23,7 @@ cd build
 tar -xf ${WORKSPACE}/apache-couchdb-*.tar.gz
 cd apache-couchdb-*
 ./configure --with-curl
-make
-mix local.rebar --force
-mix local.hex --force
-mix hex
-mix hex.config
-make elixir || (build-aux/logfile-uploader.py && false)
+make check || (build-aux/logfile-uploader.py && false)
 '''
 
 make_packages = '''


[couchdb] 01/02: Increase default HTTP request timeout to 60s

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

kocolosk pushed a commit to branch jenkins-junit-reports-and-jenkins-env
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 3820f449fa6085ba6e3a0dc9c38602eae6c0f56d
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Mon Jul 29 14:48:40 2019 -0400

    Increase default HTTP request timeout to 60s
    
    Needed to avoid timeouts on ASF Jenkins build farm.
---
 test/elixir/lib/couch.ex | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/elixir/lib/couch.ex b/test/elixir/lib/couch.ex
index 58581b2..d43e23d 100644
--- a/test/elixir/lib/couch.ex
+++ b/test/elixir/lib/couch.ex
@@ -179,7 +179,7 @@ defmodule Couch do
       Keyword.get(
         options,
         :timeout,
-        Application.get_env(:httpotion, :default_timeout, 5000)
+        Application.get_env(:httpotion, :default_timeout, 60_000)
       )
 
     ib_options =