You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2022/05/03 15:50:44 UTC

[trafficserver-ci] branch main updated: fedora: Explicitly put /bin in PATH; export M4/CONFIG_SHELL (#98)

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 7a6d1ea  fedora: Explicitly put /bin in PATH; export M4/CONFIG_SHELL (#98)
7a6d1ea is described below

commit 7a6d1ea1e38f086eca85c3804f4f92becc7b29ba
Author: Brian Neradt <br...@gmail.com>
AuthorDate: Tue May 3 10:50:40 2022 -0500

    fedora: Explicitly put /bin in PATH; export M4/CONFIG_SHELL (#98)
    
    More attempts at helping the fedora builds.
---
 jenkins/github/fedora.pipeline | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/jenkins/github/fedora.pipeline b/jenkins/github/fedora.pipeline
index a12c42a..c48bab0 100644
--- a/jenkins/github/fedora.pipeline
+++ b/jenkins/github/fedora.pipeline
@@ -51,10 +51,15 @@ pipeline {
                         set -x
                         set -e
 
+                        export PATH=/bin:${PATH}
+                        echo "PATH: $PATH"
+                        export M4=/bin/m4
+                        export CONFIG_SHELL=/bin/bash
+
                         autoreconf_succeeded=0
                         for i in {1..5}
                         do
-                          if M4=/bin/m4 CONFIG_SHELL=/bin/bash autoreconf -fiv
+                          if autoreconf -fiv
                           then
                             autoreconf_succeeded=1
                             break