From 4ad43b5d3bdadd3ef9b38e7d2898a41f938b71ce Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Wed, 1 Sep 2021 12:36:00 +0000 Subject: [PATCH] updating the test jenkinsfiles --- jenkins-pipeline/Jenkinsfile.001 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jenkins-pipeline/Jenkinsfile.001 b/jenkins-pipeline/Jenkinsfile.001 index 89ec671..0312aef 100644 --- a/jenkins-pipeline/Jenkinsfile.001 +++ b/jenkins-pipeline/Jenkinsfile.001 @@ -43,6 +43,7 @@ pipeline { stages { stage('Checkout') { steps { + echo "Checking out for ${BUILD_TYPE} on ${PLATFORM}" checkout([$class: 'SubversionSCM', additionalCredentials: [], excludedCommitMessages: '', @@ -64,7 +65,7 @@ pipeline { stage('Build') { steps { echo "Do build for ${BUILD_TYPE} on ${PLATFORM}" - sh "./configure && make" + sh "ls -laF && ./configure && make" } }