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 2022/01/16 02:49:55 UTC

[couchdb] branch jenkins-bump-erlang-and-debian-versions updated: Skip slow erlfmt-check for now

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

kocolosk pushed a commit to branch jenkins-bump-erlang-and-debian-versions
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/jenkins-bump-erlang-and-debian-versions by this push:
     new 7420458  Skip slow erlfmt-check for now
7420458 is described below

commit 742045863403f65e945be7046f58b2b978059beb
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Sat Jan 15 21:49:42 2022 -0500

    Skip slow erlfmt-check for now
---
 build-aux/Jenkinsfile.full | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 3c592db..e1156b0 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -14,6 +14,7 @@
 // the License.
 
 unpack = '''
+pwd
 ls -l
 mkdir -p ${COUCHDB_IO_LOG_DIR} ${platform}
 cd ${platform}
@@ -108,7 +109,7 @@ pipeline {
         sh 'ls -l'
         sh 'rm -rf apache-couchdb-*'
         sh "./configure --spidermonkey-version ${spidermonkey}"
-        sh 'make erlfmt-check'
+        // sh 'make erlfmt-check'
         sh 'make elixir-check-formatted'
         sh 'make dist'
       }
@@ -284,6 +285,7 @@ pipeline {
             stages {
               stage('Build from tarball & test') {
                 steps {
+                  sh( script: 'rm apache-couchdb-*.tar.gz', label: 'Clean workspace' )
                   unstash 'tarball'
                   sh( script: unpack, label: 'Unpack tarball' )
                   dir( "${platform}/build/couchdb" ) {