You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
2.9 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. #!/usr/bin/env groovy
  2. pipeline {
  3. agent any
  4. options {
  5. timeout(time: 2, unit: 'HOURS')
  6. }
  7. environment {
  8. REVISION = ''
  9. CUSTOM_SCM_INFO = ''
  10. }
  11. stages {
  12. stage('Build') {
  13. steps {
  14. script {
  15. def commitId = sh(returnStdout: true, script: 'git rev-parse --short HEAD').trim()
  16. def commitDate = sh(returnStdout: true, script: 'git --no-pager show -s --format=%cd --date=short HEAD').trim()
  17. REVISION = "${env.BRANCH_NAME}-${commitDate}.${commitId}"
  18. }
  19. sh "./gradlew -Pversion='${REVISION}' testClasses"
  20. }
  21. }
  22. stage('Test') {
  23. steps {
  24. sh "./gradlew --no-build-cache -Pversion='${REVISION}' -Dtestlogger.theme=plain-parallel test"
  25. }
  26. post {
  27. always {
  28. junit '**/build/test-results/test/TEST-*.xml'
  29. }
  30. }
  31. }
  32. stage('Package') {
  33. steps {
  34. sh "./gradlew -Pversion='${REVISION}' bootJar -x test"
  35. }
  36. }
  37. }
  38. post {
  39. always {
  40. script {
  41. def commit = sh(returnStdout: true, script: 'git rev-parse HEAD')
  42. def author = sh(returnStdout: true, script: "git --no-pager show -s --format='%an' ${commit}").trim()
  43. def commitLog = sh(returnStdout: true, script: 'git log -1 --pretty=%B').trim()
  44. CUSTOM_SCM_INFO = "Latest Commit (${author}):```${commitLog}```"
  45. }
  46. deleteDir()
  47. }
  48. success {
  49. office365ConnectorSend color: 'good',
  50. message: "Build ${currentBuild.fullDisplayName} completed *successfully* (<${env.BUILD_URL}|Open>).\n\n\n${CUSTOM_SCM_INFO}",
  51. webhookUrl: "https://outlook.office.com/webhook/97618564-835e-438e-a2a7-a77b21331e1e@22877e52-e9fd-410d-91a3-817d8ab89d63/JenkinsCI/fa736de2175649a891c2957f00532027/87d23462-1d0c-4378-b4e0-05c7d5546a25"
  52. }
  53. failure {
  54. office365ConnectorSend color: 'danger',
  55. message: "Build ${currentBuild.fullDisplayName} *failed* (<${env.BUILD_URL}|Open>).\n\n\n${CUSTOM_SCM_INFO}",
  56. webhookUrl: "https://outlook.office.com/webhook/97618564-835e-438e-a2a7-a77b21331e1e@22877e52-e9fd-410d-91a3-817d8ab89d63/JenkinsCI/fa736de2175649a891c2957f00532027/87d23462-1d0c-4378-b4e0-05c7d5546a25"
  57. }
  58. unstable {
  59. office365ConnectorSend color: 'warning',
  60. message: "Build ${currentBuild.fullDisplayName} was *unstable* (<${env.BUILD_URL}|Open>).\n\n\n${CUSTOM_SCM_INFO}",
  61. webhookUrl: "https://outlook.office.com/webhook/97618564-835e-438e-a2a7-a77b21331e1e@22877e52-e9fd-410d-91a3-817d8ab89d63/JenkinsCI/fa736de2175649a891c2957f00532027/87d23462-1d0c-4378-b4e0-05c7d5546a25"
  62. }
  63. }
  64. }