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 19:47:56 UTC

[couchdb] branch jenkins-junit-reports-and-jenkins-env updated: More debugging

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


The following commit(s) were added to refs/heads/jenkins-junit-reports-and-jenkins-env by this push:
     new 5937147  More debugging
5937147 is described below

commit 5937147222479a49fdd32e67d296f542b93bd22e
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Wed Jul 31 15:47:44 2019 -0400

    More debugging
---
 Jenkinsfile | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 8f97a58..367555d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -43,8 +43,9 @@ 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/src/*/.eunit/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/
-mv ../couchdb/_build/*/lib/couchdbtest/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/
+find ../couchdb -name "*.xml"
+mv ../couchdb/src/*/.eunit/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/ || true
+mv ../couchdb/_build/*/lib/couchdbtest/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/ || true
 rm -rf ${builddir} ${COUCHDB_IO_LOG_DIR}
 '''
 
@@ -149,8 +150,8 @@ pipeline {
                 gmake check || (build-aux/logfile-uploader.py && false)
 
                 mkdir -p ${WORKSPACE}/test-results/freebsd
-                mv src/*/.eunit/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/
-                mv _build/*/lib/couchdbtest/*.xml ${WORKSPACE}/test-results/freebsd/
+                mv src/*/.eunit/*.xml ${WORKSPACE}/test-results/${platform}-${arch}/ || true
+                mv _build/*/lib/couchdbtest/*.xml ${WORKSPACE}/test-results/freebsd/ || true
                 # No package build for FreeBSD at this time
                 rm -rf $builddir $COUCHDB_IO_LOG_DIR
               '''