Files
SCM-Manager/Jenkinsfile

209 lines
6.6 KiB
Plaintext
Raw Normal View History

2018-05-31 12:34:34 +02:00
#!groovy
2021-01-13 13:30:44 +01:00
pipeline {
2021-01-13 13:30:44 +01:00
options {
buildDiscarder(logRotator(numToKeepStr: '10'))
2020-03-11 11:05:54 +01:00
disableConcurrentBuilds()
2021-01-13 13:30:44 +01:00
}
2018-05-31 12:34:34 +02:00
2021-01-13 13:30:44 +01:00
agent {
docker {
image 'scmmanager/java-build:11.0.9_11.1'
label 'docker'
}
}
2018-05-31 12:34:34 +02:00
2021-01-13 13:30:44 +01:00
environment {
HOME = "${env.WORKSPACE}"
SONAR_USER_HOME = "${env.WORKSPACE}/.sonar"
}
2018-05-31 12:34:34 +02:00
2021-01-13 13:30:44 +01:00
stages {
2018-05-31 12:34:34 +02:00
2021-01-13 13:30:44 +01:00
stage('Set Version') {
when {
branch pattern: 'release/*', comparator: 'GLOB'
}
2021-01-13 13:30:44 +01:00
steps {
// read version from branch, set it and commit it
2021-01-14 08:29:36 +01:00
gradle "setVersion -PnewVersion ${releaseVersion}"
2021-01-13 13:30:44 +01:00
sh "git add gradle.properties lerna.json '**.json'"
commit "Release version ${releaseVersion}"
// fetch all remotes from origin
sh 'git config --replace-all "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"'
sh 'git fetch --all'
// checkout, reset and merge
sh 'git checkout master'
sh 'git reset --hard origin/master'
sh "git merge --ff-only ${env.BRANCH_NAME}"
// set tag
tag releaseVersion
2020-03-11 11:05:54 +01:00
}
2021-01-13 13:30:44 +01:00
}
2020-03-11 11:05:54 +01:00
2021-01-13 13:30:44 +01:00
stage('Build') {
steps {
// build without tests
2021-01-14 08:29:36 +01:00
gradle "-xtest build"
}
2021-01-13 13:30:44 +01:00
}
2018-05-31 12:34:34 +02:00
2021-01-13 13:30:44 +01:00
stage('Check') {
steps {
2021-01-14 08:29:36 +01:00
gradle 'check'
2021-01-13 13:30:44 +01:00
junit allowEmptyResults: true, testResults: '**/build/test-results/test/TEST-*.xml,**/build/test-results/tests/test/TEST-*.xml,**/build/jest-reports/TEST-*.xml'
}
2021-01-13 13:30:44 +01:00
}
2018-09-24 13:03:02 +02:00
2021-01-13 13:30:44 +01:00
// in parallel with check?
stage('Integration Tests') {
steps {
2021-01-14 08:29:36 +01:00
gradle 'integrationTest'
2021-01-13 13:30:44 +01:00
junit allowEmptyResults: true, testResults: 'scm-it/build/test-results/javaIntegrationTests/*.xml,scm-ui/build/reports/e2e/*.xml'
archiveArtifacts allowEmptyArchive: true, artifacts: 'scm-ui/e2e-tests/cypress/videos/*.mp4'
archiveArtifacts allowEmptyArchive: true, artifacts: 'scm-ui/e2e-tests/cypress/screenshots/**/*.png'
}
}
2021-01-13 13:30:44 +01:00
stage('SonarQube') {
steps {
sh 'git config --replace-all "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"'
sh 'git fetch origin master'
script {
withSonarQubeEnv('sonarcloud.io-scm') {
2021-01-14 08:29:36 +01:00
String parameters = " -Dsonar.organization=scm-manager -Dsonar.branch.name=${env.BRANCH_NAME}"
if (env.BRANCH_NAME != "master") {
2021-01-14 08:29:36 +01:00
parameters += " -Dsonar.branch.target=master"
2020-03-11 11:05:54 +01:00
}
2021-01-14 08:29:36 +01:00
gradle "sonarqube ${parameters}"
2020-05-26 09:47:38 +02:00
}
2020-05-10 21:47:35 +02:00
}
2021-01-13 13:30:44 +01:00
}
}
2020-03-11 11:05:54 +01:00
2021-01-13 13:30:44 +01:00
stage('Deployment') {
when {
branch pattern: 'release/*', comparator: 'GLOB'
// TODO or develop
expression { return isBuildSuccess() }
}
steps {
withPublishProperies {
2021-01-14 08:29:36 +01:00
gradle "publish ${PUBLISH_PROPERTIES}"
}
2021-01-13 13:30:44 +01:00
}
}
2020-03-11 11:05:54 +01:00
2021-01-13 13:30:44 +01:00
stage('Push Tag') {
when {
branch pattern: 'release/*', comparator: 'GLOB'
expression { return isBuildSuccess() }
}
steps {
// push changes back to remote repository
authGit 'cesmarvin-github', 'push origin master --tags'
authGit 'cesmarvin-github', 'push origin --tags'
}
}
2020-05-10 21:47:35 +02:00
2020-03-11 11:05:54 +01:00
2021-01-13 13:30:44 +01:00
stage('Set Next Version') {
when {
branch pattern: 'release/*', comparator: 'GLOB'
expression { return isBuildSuccess() }
}
steps {
sh returnStatus: true, script: "git branch -D develop"
sh "git checkout develop"
sh "git merge master"
2020-05-10 21:47:35 +02:00
2021-01-14 08:29:36 +01:00
gradle "setVersionToNextSnapshot"
2020-05-10 21:47:35 +02:00
2021-01-13 13:30:44 +01:00
sh "git add gradle.properties lerna.json '**.json'"
commit 'Prepare for next development iteration'
authGit 'cesmarvin-github', 'push origin develop'
}
}
2020-05-10 21:47:35 +02:00
2021-01-13 13:30:44 +01:00
stage('Delete Release Branch') {
when {
branch pattern: 'release/*', comparator: 'GLOB'
expression { return isBuildSuccess() }
}
steps {
authGit 'cesmarvin-github', "push origin :${env.BRANCH_NAME}"
}
2018-05-31 12:34:34 +02:00
}
2021-01-13 13:30:44 +01:00
}
2021-01-13 13:30:44 +01:00
post {
failure {
mail to: "scm-team@cloudogu.com",
subject: "Jenkins Job ${JOB_NAME} - Build #${BUILD_NUMBER} - ${currentBuild.currentResult}!",
body: "Check console output at ${BUILD_URL} to view the results."
}
unstable {
mail to: "scm-team@cloudogu.com",
subject: "Jenkins Job ${JOB_NAME} - Build #${BUILD_NUMBER} - ${currentBuild.currentResult}!",
body: "Check console output at ${BUILD_URL} to view the results."
}
fixed {
mail to: "scm-team@cloudogu.com",
subject: "Jenkins Job ${JOB_NAME} - Is back to normal with Build #${BUILD_NUMBER}",
body: "Check console output at ${BUILD_URL} to view the results."
}
}
2018-05-31 12:34:34 +02:00
}
2021-01-14 08:29:36 +01:00
void gradle(String command) {
// setting user home system property, should fix user prefs (?/.java/.prefs ...)
sh "./gradlew -Duser.home=${env.WORKSPACE} ${command}"
}
2021-01-13 13:30:44 +01:00
String getReleaseVersion() {
return env.BRANCH_NAME.substring("release/".length());
}
2021-01-13 13:30:44 +01:00
void commit(String message) {
sh "git -c user.name='CES Marvin' -c user.email='cesmarvin@cloudogu.com' commit -m '${message}'"
2020-03-11 11:05:54 +01:00
}
2021-01-13 13:30:44 +01:00
void tag(String version) {
String message = "Release version ${version}"
sh "git -c user.name='CES Marvin' -c user.email='cesmarvin@cloudogu.com' tag -m '${message}' ${version}"
2020-03-11 11:05:54 +01:00
}
2021-01-13 13:30:44 +01:00
void isBuildSuccess() {
return currentBuild.result == null || currentBuild.result == 'SUCCESS'
}
2021-01-13 13:30:44 +01:00
void withPublishProperies(Closure<Void> closure) {
2020-05-26 09:47:38 +02:00
withCredentials([
usernamePassword(credentialsId: 'maven.scm-manager.org', passwordVariable: 'PACKAGES_PASSWORD', usernameVariable: 'PACKAGES_USERNAME'),
usernamePassword(credentialsId: 'hub.docker.com-cesmarvin', passwordVariable: 'DOCKER_PASSWORD', usernameVariable: 'DOCKER_USERNAME'),
2021-01-13 13:30:44 +01:00
string(credentialsId: 'cesmarvin_npm_token', variable: 'NPM_TOKEN'),
2020-05-26 09:47:38 +02:00
file(credentialsId: 'oss-gpg-secring', variable: 'GPG_KEYRING'),
usernamePassword(credentialsId: 'oss-keyid-and-passphrase', usernameVariable: 'GPG_KEY_ID', passwordVariable: 'GPG_KEY_PASSPHRASE')
]) {
2021-01-13 13:30:44 +01:00
String properties = "-PpackagesScmManagerUsername=${PACKAGES_USERNAME} -PpackagesScmManagerPassword=${PACKAGES_PASSWORD}"
properties += " -PdockerUsername=${DOCKER_USERNAME} -PdockerPassword=${DOCKER_PASSWORD}"
properties += " -PnpmEmail=cesmarvin@cloudogu.com -PnpmToken=${NPM_TOKEN}"
properties += " -Psigning.secretKeyRingFile=${GPG_KEYRING} -Psigning.keyId=${GPG_KEY_ID} -Psigning.password=${GPG_KEY_PASSPHRASE}"
withEnv(["PUBLISH_PROPERTIES=\"${properties}\""]) {
closure.call()
}
}
}
void authGit(String credentials, String command) {
withCredentials([
usernamePassword(credentialsId: credentials, usernameVariable: 'AUTH_USR', passwordVariable: 'AUTH_PSW')
]) {
sh "git -c credential.helper=\"!f() { echo username='\$AUTH_USR'; echo password='\$AUTH_PSW'; }; f\" ${command}"
2020-05-26 09:47:38 +02:00
}
}