summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Kocoloski <kocolosk@apache.org>2022-01-15 21:49:42 -0500
committerAdam Kocoloski <kocolosk@apache.org>2022-01-15 21:49:42 -0500
commit742045863403f65e945be7046f58b2b978059beb (patch)
treec60caa32d3c15772a78a512810b07b153d7c5a53
parent18c486ea6ddc9f9f8b031f39a4bd98845291125a (diff)
downloadcouchdb-742045863403f65e945be7046f58b2b978059beb.tar.gz
Skip slow erlfmt-check for now
-rw-r--r--build-aux/Jenkinsfile.full4
1 files changed, 3 insertions, 1 deletions
diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 3c592db87..e1156b07d 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" ) {