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

bneradt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git


The following commit(s) were added to refs/heads/main by this push:
     new 30c4578  CONFIG_SHELL=/bin/bash (#88)
30c4578 is described below

commit 30c45788322a9e95f3ea0cf47cee8a310be4d796
Author: Brian Neradt <[email protected]>
AuthorDate: Tue Mar 22 20:22:12 2022 -0500

    CONFIG_SHELL=/bin/bash (#88)
    
    SHELL didn't work. Maybe CONFIG_SHELL will.
---
 jenkins/fedora.pipeline        | 2 +-
 jenkins/github/fedora.pipeline | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/jenkins/fedora.pipeline b/jenkins/fedora.pipeline
index d206f6a..96e6d62 100644
--- a/jenkins/fedora.pipeline
+++ b/jenkins/fedora.pipeline
@@ -21,7 +21,7 @@ pipeline {
                 echo 'Starting build'
                 dir('src') {
                     sh('ls')
-                    sh('SHELL=/bin/bash autoreconf -fiv')
+                    sh('CONFIG_SHELL=/bin/bash autoreconf -fiv')
                     sh('./configure --enable-experimental-plugins')
                     sh('make -j2')
                 }
diff --git a/jenkins/github/fedora.pipeline b/jenkins/github/fedora.pipeline
index 5c26d50..4ded83f 100644
--- a/jenkins/github/fedora.pipeline
+++ b/jenkins/github/fedora.pipeline
@@ -50,7 +50,7 @@ pipeline {
                     sh '''#!/bin/bash
                         set -x
                         set -e
-                        SHELL=/bin/bash autoreconf -fiv
+                        CONFIG_SHELL=/bin/bash autoreconf -fiv
                         # Remove the --with-openssl argument when we support 
OpenSSL 3.x.
                         ./configure --with-openssl=/opt/openssl-quic 
--enable-experimental-plugins --enable-example-plugins --prefix=/tmp/ats/ 
--enable-werror --enable-debug --enable-wccp --enable-luajit --enable-ccache
                         make -j4 V=1 Q=

Reply via email to