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

vatamane pushed a commit to branch fix-full-build-jenkins
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 629b8c10cf05c0d2ac80e11e17281f199e69040f
Author: Nick Vatamaniuc <[email protected]>
AuthorDate: Sat Jun 18 23:04:17 2022 -0400

    Fix full CI build
    
    We had to set spidermonkey to 78 in the PR CI builds so do the same
    for full builds.
---
 build-aux/Jenkinsfile.full | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 4c9c531d5..de3aa0247 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -267,14 +267,10 @@ pipeline {
           registryCredentialsId 'dockerhub_creds'
         }
       }
-      environment {
-        // TODO find a way to avoid setting this explicitly
-        spidermonkey = '60'
-      }
       steps {
         timeout(time: 15, unit: "MINUTES") {
           sh (script: 'rm -rf apache-couchdb-*', label: 'Clean workspace of 
any previous release artifacts' )
-          sh "./configure --spidermonkey-version ${spidermonkey}"
+          sh "./configure --spidermonkey-version 78"
           sh 'make erlfmt-check'
           sh 'make elixir-check-formatted'
           sh 'make dist'

Reply via email to