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 11c29a5  Print some more information at the beginning (#311)
11c29a5 is described below

commit 11c29a502b61b5de713ff2b177fdc791f3cdca93
Author: Brian Neradt <brian.ner...@gmail.com>
AuthorDate: Tue Jan 9 14:41:49 2024 -0600

    Print some more information at the beginning (#311)
    
    In particular, the show of HEAD^2 and HEAD^1 should ensure that both 
parents of the merge commit are printed.
---
 jenkins/github/autest.pipeline         | 17 ++++++++++++++++-
 jenkins/github/centos.pipeline         | 18 +++++++++++++++++-
 jenkins/github/clang-analyzer.pipeline | 18 +++++++++++++++++-
 jenkins/github/debian.pipeline         | 18 +++++++++++++++++-
 jenkins/github/docs.pipeline           | 18 +++++++++++++++++-
 jenkins/github/fedora.pipeline         | 18 +++++++++++++++++-
 jenkins/github/format.pipeline         | 18 +++++++++++++++++-
 jenkins/github/freebsd.pipeline        | 17 ++++++++++++++++-
 jenkins/github/osx.pipeline            | 18 +++++++++++++++++-
 jenkins/github/rat.pipeline            | 18 +++++++++++++++++-
 jenkins/github/rocky.pipeline          | 18 +++++++++++++++++-
 jenkins/github/ubuntu.pipeline         | 18 +++++++++++++++++-
 12 files changed, 202 insertions(+), 12 deletions(-)

diff --git a/jenkins/github/autest.pipeline b/jenkins/github/autest.pipeline
index 3238727..1e09775 100644
--- a/jenkins/github/autest.pipeline
+++ b/jenkins/github/autest.pipeline
@@ -57,7 +57,22 @@ pipeline {
                                                        ],
                                                ],
                                                userRemoteConfigs: [[url: 
github_url, refspec: '+refs/pull/*:refs/remotes/origin/pr/*']]])
-                                       sh 'git show -n 10 --decorate --graph 
--oneline --no-patch'
+                                       sh '''#!/bin/bash
+                                               set -x
+
+                                               echo
+                                               echo
+                                               cat /etc/*release*
+
+                                               echo
+                                               git show HEAD^2 --no-patch
+                                               git show HEAD^1 --no-patch
+                                               echo
+
+                                               git show -n 10 --decorate 
--graph --oneline --no-patch
+                                               echo
+                                               echo
+                                        '''
                                }
                                echo 'Finished Cloning'
                        }
diff --git a/jenkins/github/centos.pipeline b/jenkins/github/centos.pipeline
index 9f85ae8..5a8997b 100644
--- a/jenkins/github/centos.pipeline
+++ b/jenkins/github/centos.pipeline
@@ -35,7 +35,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline -s'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+                            cat /etc/*release*
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/clang-analyzer.pipeline 
b/jenkins/github/clang-analyzer.pipeline
index e22c10b..54f5c6c 100644
--- a/jenkins/github/clang-analyzer.pipeline
+++ b/jenkins/github/clang-analyzer.pipeline
@@ -31,7 +31,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+                            cat /etc/*release*
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/debian.pipeline b/jenkins/github/debian.pipeline
index b643ad5..7a9bce5 100644
--- a/jenkins/github/debian.pipeline
+++ b/jenkins/github/debian.pipeline
@@ -35,7 +35,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+                            cat /etc/*release*
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/docs.pipeline b/jenkins/github/docs.pipeline
index 52bdeef..e8b2a3c 100644
--- a/jenkins/github/docs.pipeline
+++ b/jenkins/github/docs.pipeline
@@ -32,7 +32,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+                            cat /etc/*release*
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/fedora.pipeline b/jenkins/github/fedora.pipeline
index cded0c3..f2ce366 100644
--- a/jenkins/github/fedora.pipeline
+++ b/jenkins/github/fedora.pipeline
@@ -35,7 +35,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+                            cat /etc/*release*
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/format.pipeline b/jenkins/github/format.pipeline
index 5b66585..0569e4b 100644
--- a/jenkins/github/format.pipeline
+++ b/jenkins/github/format.pipeline
@@ -32,7 +32,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+                            cat /etc/*release*
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/freebsd.pipeline b/jenkins/github/freebsd.pipeline
index fc568d3..5e4bf69 100644
--- a/jenkins/github/freebsd.pipeline
+++ b/jenkins/github/freebsd.pipeline
@@ -24,7 +24,22 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/osx.pipeline b/jenkins/github/osx.pipeline
index e207b1c..afc7cec 100644
--- a/jenkins/github/osx.pipeline
+++ b/jenkins/github/osx.pipeline
@@ -24,7 +24,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                        set -x
+
+                        echo
+                        echo
+                        clang --version
+                        sw_vers
+
+                        echo
+                        git show HEAD^2 --no-patch
+                        git show HEAD^1 --no-patch
+                        echo
+
+                        git show -n 10 --decorate --graph --oneline --no-patch
+                        echo
+                        echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/rat.pipeline b/jenkins/github/rat.pipeline
index 80650f3..d37e464 100644
--- a/jenkins/github/rat.pipeline
+++ b/jenkins/github/rat.pipeline
@@ -32,7 +32,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+                            cat /etc/*release*
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/rocky.pipeline b/jenkins/github/rocky.pipeline
index b473378..f2493c2 100644
--- a/jenkins/github/rocky.pipeline
+++ b/jenkins/github/rocky.pipeline
@@ -35,7 +35,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+                            cat /etc/*release*
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }
diff --git a/jenkins/github/ubuntu.pipeline b/jenkins/github/ubuntu.pipeline
index ead62ef..10460d4 100644
--- a/jenkins/github/ubuntu.pipeline
+++ b/jenkins/github/ubuntu.pipeline
@@ -35,7 +35,23 @@ pipeline {
                             ],
                         ],
                         userRemoteConfigs: [[url: github_url, refspec: 
'+refs/pull/*:refs/remotes/origin/pr/*']]])
-                    sh 'git show -n 10 --decorate --graph --oneline --no-patch'
+                    sh '''#!/bin/bash
+                            set -x
+
+                            echo
+                            echo
+                            uname -a
+                            cat /etc/*release*
+
+                            echo
+                            git show HEAD^2 --no-patch
+                            git show HEAD^1 --no-patch
+                            echo
+
+                            git show -n 10 --decorate --graph --oneline 
--no-patch
+                            echo
+                            echo
+                    '''
                 }
                 echo 'Finished Cloning'
             }

Reply via email to