Update Jenkinsfile

This commit is contained in:
Oleksandr Butenko 2021-07-13 14:29:33 +03:00 committed by GitHub
parent 3d1cda7c24
commit 566e1d6b48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
Jenkinsfile vendored
View file

@ -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'
}
}
}
}
}