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.

80 lines
2.9 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 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 "chmod -R +x ."
  20. sh "./gradlew -Pversion='${REVISION}' testClasses"
  21. }
  22. }
  23. stage('Test') {
  24. steps {
  25. sh "./gradlew --no-build-cache -Pversion='${REVISION}' -Dtestlogger.theme=plain-parallel test"
  26. }
  27. post {
  28. always {
  29. junit '**/build/test-results/test/TEST-*.xml'
  30. }
  31. }
  32. }
  33. stage('Package') {
  34. steps {
  35. sh "./gradlew -Pversion='${REVISION}' jar -x test"
  36. }
  37. }
  38. }
  39. post {
  40. always {
  41. script {
  42. def commit = sh(returnStdout: true, script: 'git rev-parse HEAD')
  43. def author = sh(returnStdout: true, script: "git --no-pager show -s --format='%an' ${commit}").trim()
  44. def commitLog = sh(returnStdout: true, script: 'git log -1 --pretty=%B').trim()
  45. CUSTOM_SCM_INFO = "Latest Commit (${author}):```${commitLog}```"
  46. }
  47. deleteDir()
  48. }
  49. success {
  50. office365ConnectorSend color: 'good',
  51. message: "Build ${currentBuild.fullDisplayName} completed *successfully* (<${BUILD_URL}>).\n\n\n${CUSTOM_SCM_INFO}",
  52. webhookUrl: "https://outlook.office.com/webhook/97618564-835e-438e-a2a7-a77b21331e1e@22877e52-e9fd-410d-91a3-817d8ab89d63/JenkinsCI/fa736de2175649a891c2957f00532027/87d23462-1d0c-4378-b4e0-05c7d5546a25"
  53. }
  54. failure {
  55. office365ConnectorSend color: 'danger',
  56. message: "Build ${currentBuild.fullDisplayName} *failed* (<${BUILD_URL}>).\n\n\n${CUSTOM_SCM_INFO}",
  57. webhookUrl: "https://outlook.office.com/webhook/97618564-835e-438e-a2a7-a77b21331e1e@22877e52-e9fd-410d-91a3-817d8ab89d63/JenkinsCI/fa736de2175649a891c2957f00532027/87d23462-1d0c-4378-b4e0-05c7d5546a25"
  58. }
  59. unstable {
  60. office365ConnectorSend color: 'warning',
  61. message: "Build ${currentBuild.fullDisplayName} was *unstable* (<${env.BUILD_URL}>).\n\n\n${CUSTOM_SCM_INFO}",
  62. webhookUrl: "https://outlook.office.com/webhook/97618564-835e-438e-a2a7-a77b21331e1e@22877e52-e9fd-410d-91a3-817d8ab89d63/JenkinsCI/fa736de2175649a891c2957f00532027/87d23462-1d0c-4378-b4e0-05c7d5546a25"
  63. }
  64. }
  65. }