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/07/31 18:11:15 UTC

[couchdb] branch junit-reports-and-jenkins-env updated (7a890d2 -> 1d898a8)

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

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


    from 7a890d2  Merge branch 'master' into junit-reports-and-jenkins-env
     new 7bae5b6  Fix paths on FreeBSD, reorder mv commands
     new 1d898a8  Run all builds to completion temporarily

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 | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)


[couchdb] 01/02: Fix paths on FreeBSD, reorder mv commands

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

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

commit 7bae5b6c59429ba6ffbc553616879277aebe016b
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Wed Jul 31 14:09:18 2019 -0400

    Fix paths on FreeBSD, reorder mv commands
    
    The EUnit tests run first, so if the build aborts we should try to
    upload them before the ExUnit integration tests.
---
 Jenkinsfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 1b751d3..8b1ab36 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -43,8 +43,8 @@ mkdir -p ${WORKSPACE}/pkgs/${platform}
 mv ../rpmbuild/RPMS/$(arch)/*rpm ${WORKSPACE}/pkgs/${platform} || true
 mv ../couchdb/*.deb ${WORKSPACE}/pkgs/${platform} || true
 mkdir -p ${WORKSPACE}/test-results/${platform}-${arch}
-mv ../couchdb/_build/*/lib/couchdbtest/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/
 mv ../couchdb/src/*/.eunit/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/
+mv ../couchdb/_build/*/lib/couchdbtest/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/
 rm -rf ${builddir} ${COUCHDB_IO_LOG_DIR}
 '''
 
@@ -149,7 +149,8 @@ pipeline {
                 gmake check || (build-aux/logfile-uploader.py && false)
 
                 mkdir -p ${WORKSPACE}/test-results/freebsd
-                mv ../couchdb/_build/*/lib/couchdbtest/*.xml ${WORKSPACE}/test-results/freebsd/
+                mv src/*/.eunit/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/
+                mv _build/*/lib/couchdbtest/*.xml ${WORKSPACE}/test-results/freebsd/
                 # No package build for FreeBSD at this time
                 rm -rf $builddir $COUCHDB_IO_LOG_DIR
               '''


[couchdb] 02/02: Run all builds to completion temporarily

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

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

commit 1d898a863abe442797bf37f4d869bab7ba1ee344
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Wed Jul 31 14:10:09 2019 -0400

    Run all builds to completion temporarily
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 8b1ab36..8f97a58 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -68,7 +68,7 @@ pipeline {
   options {
     buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
     // This fails the build immediately if any parallel step fails
-    parallelsAlwaysFailFast()
+    // parallelsAlwaysFailFast()
     preserveStashes(buildCount: 10)
     timeout(time: 3, unit: 'HOURS')
     timestamps()