From c5a16dd2c3f549b9a73a8e211b0fe1f34ec99c70 Mon Sep 17 00:00:00 2001 From: primakov Date: Thu, 11 Apr 2024 13:10:30 +0300 Subject: [PATCH] back to simple log --- install/ci/Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install/ci/Jenkinsfile b/install/ci/Jenkinsfile index df33a34..65cfd3a 100644 --- a/install/ci/Jenkinsfile +++ b/install/ci/Jenkinsfile @@ -1,8 +1,7 @@ stage('install:ci') { def tag = sh(returnStdout: true, script: "git tag --contains").trim() def branchName = sh(returnStdout: true, script: "git rev-parse --abbrev-ref HEAD").trim() - // def lastLog = sh(returnStdout: true, script: "git log -1").trim() - def lastLog = sh(returnStdout: true, script: "git show -s --format='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative").trim() + def lastLog = sh(returnStdout: true, script: "git log -1").trim() if (tag) { currentBuild.displayName = "#${BUILD_NUMBER}, tag ${tag}" } else {