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/01 13:52:44 UTC

[couchdb] branch jenkins-junit-reports-and-jenkins-env updated: Don't blow away what we just unstashed

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 6f548e7  Don't blow away what we just unstashed
6f548e7 is described below

commit 6f548e793cec4342675e18ea68a6529318aa6846
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Thu Aug 1 09:52:38 2019 -0400

    Don't blow away what we just unstashed
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 8ecff30..d30dbf6 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -29,9 +29,9 @@ ls -l ${builddir}
 
 configure_tarball = '''
 cd ${builddir}
-rm -rf apache-couchdb-*
 tar -xf ${WORKSPACE}/apache-couchdb-*.tar.gz
 cd apache-couchdb-*
+ls -l
 ./configure --with-curl
 '''
 
@@ -237,7 +237,7 @@ pipeline {
             builddir = pwd tmp:true
           }
           steps {
-            sh 'rm -f apache-couchdb-*.tar.gz'
+            sh 'rm -f apache-couchdb-*'
             unstash 'tarball'
             sh( script: preamble, label: "Environment Details" )
             sh( script: configure_tarball, label: "Configure CouchDB from tarball" )