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 f61f36a  Using set -x for more steps in the coverage build (#94)
f61f36a is described below

commit f61f36a233689e967c3563a72ee6fc60c77fa4d4
Author: Brian Neradt <[email protected]>
AuthorDate: Wed Apr 13 10:23:55 2022 -0500

    Using set -x for more steps in the coverage build (#94)
---
 jenkins/branch/coverage.pipeline | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/jenkins/branch/coverage.pipeline b/jenkins/branch/coverage.pipeline
index d7edfa9..ccc3aea 100644
--- a/jenkins/branch/coverage.pipeline
+++ b/jenkins/branch/coverage.pipeline
@@ -65,6 +65,7 @@ pipeline {
                                echo 'Starting build'
                                dir('src') {
                                        sh '''#!/bin/bash
+                                       set -x
 
                                        source /opt/rh/gcc-toolset-11/enable
                                        sudo update-crypto-policies --set LEGACY
@@ -87,8 +88,8 @@ pipeline {
                                                --enable-luajit \
                                                --enable-ccache \
                                                --enable-coverage
-                                               make -j4 V=1 Q=
-                                               make install
+                                       make -j4 V=1 Q=
+                                       make install
                                        '''
                                }
                        }
@@ -96,9 +97,10 @@ pipeline {
 
                stage('Initialize Coverage') {
                        steps {
-                               echo 'Starting Unit (Catch) Tests'
+                               echo 'Initializing lcov'
                                dir('src') {
                                        sh '''#!/bin/bash
+                                               set -x
                                                source 
/opt/rh/gcc-toolset-11/enable
 
                                                # Create a base tracefile 
before the tests are run.

Reply via email to