summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Kocoloski <kocolosk@apache.org>2022-01-15 19:55:28 -0500
committerAdam Kocoloski <kocolosk@apache.org>2022-01-15 19:55:28 -0500
commit3818ca0a73b3ddeaf29d3e2cba927abe5f1f4169 (patch)
tree5534bf466dbd203491cd6fcf3be8b35c0c19a4a5
parentc7d4c2534d939cafd0b156ecd4ebbb13371df5bb (diff)
downloadcouchdb-3818ca0a73b3ddeaf29d3e2cba927abe5f1f4169.tar.gz
Once more into the breaach
-rw-r--r--build-aux/Jenkinsfile.full17
1 files changed, 10 insertions, 7 deletions
diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 98d20988a..dd8630324 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -266,13 +266,16 @@ pipeline {
steps {
unstash 'tarball'
sh( script: unpack, label: 'Unpack tarball' )
- dir( "${platform}/build/couchdb" )
- sh "./configure --spidermonkey-version ${sm_ver}"
- sh 'make'
- sh 'make eunit'
- sh 'make elixir-suite'
- sh 'make exunit'
- sh 'make mango-test'
+ dir( "${platform}/build/couchdb" ) {
+ sh 'pwd'
+ sh 'ls -l'
+ sh "./configure --spidermonkey-version ${sm_ver}"
+ sh 'make'
+ sh 'make eunit'
+ sh 'make elixir-suite'
+ sh 'make exunit'
+ sh 'make mango-test'
+ }
}
post {
always {