You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2020/04/09 21:18:33 UTC

[couchdb] 01/01: Use 'make check-fdb' for running FDB-only tests on Jenkins

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

vatamane pushed a commit to branch use-make-check-fdb-for-fdb
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 9addcbdcc19af128cc8098a845aaeeb656b189ad
Author: Nick Vatamaniuc <va...@apache.org>
AuthorDate: Thu Apr 9 17:17:45 2020 -0400

    Use 'make check-fdb' for running FDB-only tests on Jenkins
---
 build-aux/Jenkinsfile.full | 2 +-
 build-aux/Jenkinsfile.pr   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index d885254..205674e 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -22,7 +22,7 @@ cd build
 tar -xf ${WORKSPACE}/apache-couchdb-*.tar.gz
 cd apache-couchdb-*
 ./configure --with-curl --spidermonkey-version ${sm_ver}
-make check || (make build-report && false)
+make check-fdb || (make build-report && false)
 '''
 
 make_packages = '''
diff --git a/build-aux/Jenkinsfile.pr b/build-aux/Jenkinsfile.pr
index 8c9cbd9..cd38ffe 100644
--- a/build-aux/Jenkinsfile.pr
+++ b/build-aux/Jenkinsfile.pr
@@ -22,7 +22,7 @@ tar -xf ${WORKSPACE}/apache-couchdb-*.tar.gz
 cd apache-couchdb-*
 . /usr/local/kerl/${KERL_VER}/activate
 ./configure --with-curl --spidermonkey-version 60
-make check || (make build-report && false)
+make check-fdb || (make build-report && false)
 '''
 
 pipeline {