diff --git a/Jenkinsfile b/Jenkinsfile index 689c24b3c..e5bb109e8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,17 +7,12 @@ pipeline { } agent any stages { - stage('Jira2') { + stage('get hash') { steps { - jiraAddComment idOrKey: "${TaskID}", comment: 'build successfull', site: 'butenko992' + sh 'echo ${RELEASE_NOTES}' + sh 'echo ${GIT_COMMIT}' } } -// stage('get hash') { -// steps { -// sh 'echo ${RELEASE_NOTES}' -// sh 'echo ${GIT_COMMIT}' -// } -// } stage('Build') { steps { echo 'Running build automation' @@ -68,6 +63,11 @@ pipeline { } } } + stage('Jira2') { + steps { + jiraAddComment idOrKey: "${TaskID}", comment: 'build successfull', site: 'butenko992' + } + } } } }