97 lines
4.1 KiB
Groovy
97 lines
4.1 KiB
Groovy
def p = [:]
|
|
node {
|
|
checkout scm
|
|
p = readProperties interpolate: true, file: 'ci/release.properties'
|
|
}
|
|
|
|
pipeline {
|
|
agent none
|
|
|
|
options {
|
|
disableConcurrentBuilds()
|
|
buildDiscarder(logRotator(numToKeepStr: '14'))
|
|
}
|
|
|
|
stages {
|
|
stage('Ship It') {
|
|
when {
|
|
branch 'release'
|
|
}
|
|
agent {
|
|
docker {
|
|
image 'springci/spring-data-release-tools:0.1'
|
|
}
|
|
}
|
|
options { timeout(time: 4, unit: 'HOURS') }
|
|
|
|
environment {
|
|
GIT_USERNAME = credentials('spring-data-release-git-username')
|
|
GIT_AUTHOR = credentials('spring-data-release-git-author')
|
|
GIT_EMAIL = credentials('spring-data-release-git-email')
|
|
GIT_PASSWORD = credentials('spring-data-release-git-password')
|
|
GITHUB_API_URL = credentials('spring-data-release-github-api-url')
|
|
DEPLOYMENT_USERNAME = credentials('spring-data-release-deployment-username')
|
|
DEPLOYMENT_PASSWORD = credentials('spring-data-release-deployment-password')
|
|
DEPLOYMENT_API_KEY = credentials('spring-data-release-deployment-api-key')
|
|
STAGING_PROFILE_ID = credentials('spring-data-release-deployment-maven-central-staging-profile-id')
|
|
JIRA_USERNAME = credentials('spring-data-release-jira-username')
|
|
JIRA_PASSWORD = credentials('spring-data-release-jira-password')
|
|
JIRA_URL = credentials('spring-data-release-jira-url')
|
|
PASSPHRASE = credentials('spring-gpg-passphrase')
|
|
KEYRING = credentials('spring-signing-secring.gpg')
|
|
SONATYPE = credentials('oss-login')
|
|
}
|
|
|
|
steps {
|
|
script {
|
|
sh "ci/build-spring-data-release-cli.bash"
|
|
sh "ci/prepare-and-build.bash ${p['release.version']}"
|
|
|
|
slackSend(
|
|
color: (currentBuild.currentResult == 'SUCCESS') ? 'good' : 'danger',
|
|
channel: '#spring-data-dev',
|
|
message: (currentBuild.currentResult == 'SUCCESS')
|
|
? "`${env.BUILD_URL}` - Build and deploy passed! Conduct smoke tests then report back here."
|
|
: "`${env.BUILD_URL}` - Push and distribute failed!")
|
|
|
|
input("SMOKE TEST: Did the smoke tests for ${p['release.version']} pass?")
|
|
|
|
sh "ci/conclude.bash ${p['release.version']}"
|
|
|
|
slackSend(
|
|
color: (currentBuild.currentResult == 'SUCCESS') ? 'good' : 'danger',
|
|
channel: '#spring-data-dev',
|
|
message: "${env.BUILD_URL} - Ready to push and distribute? Check out the logs and click on either `Proceed` or `Abort`")
|
|
|
|
input("PUSH AND DISTRIBUTE: Ready to push and distribute ${p['release.version']}? (Can't go back after this)")
|
|
|
|
sh "ci/push-and-distribute.bash ${p['release.version']}"
|
|
|
|
slackSend(
|
|
color: (currentBuild.currentResult == 'SUCCESS') ? 'good' : 'danger',
|
|
channel: '#spring-data-dev',
|
|
message: (currentBuild.currentResult == 'SUCCESS')
|
|
? "`${env.BUILD_URL}` - Push and distribute ${p['release.version']} passed! Release the build (if needed)."
|
|
: "`${env.BUILD_URL}` - Push and distribute ${p['release.version']} failed!")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
post {
|
|
changed {
|
|
script {
|
|
slackSend(
|
|
color: (currentBuild.currentResult == 'SUCCESS') ? 'good' : 'danger',
|
|
channel: '#spring-data-dev',
|
|
message: "${currentBuild.fullDisplayName} - `${currentBuild.currentResult}`\n${env.BUILD_URL}")
|
|
emailext(
|
|
subject: "[${currentBuild.fullDisplayName}] ${currentBuild.currentResult}",
|
|
mimeType: 'text/html',
|
|
recipientProviders: [[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']],
|
|
body: "<a href=\"${env.BUILD_URL}\">${currentBuild.fullDisplayName} is reported as ${currentBuild.currentResult}</a>")
|
|
}
|
|
}
|
|
}
|
|
}
|