overleaf/services/document-updater/Jenkinsfile

125 lines
4.2 KiB
Text
Raw Normal View History

2018-02-15 11:28:40 -05:00
String cron_string = BRANCH_NAME == "master" ? "@daily" : ""
2017-08-11 06:06:36 -04:00
2018-02-15 11:28:40 -05:00
pipeline {
2017-08-14 10:28:04 -04:00
agent any
2018-02-15 11:28:40 -05:00
2018-09-28 10:13:47 -04:00
environment {
2019-05-07 10:44:56 -04:00
GIT_PROJECT = "document-updater"
JENKINS_WORKFLOW = "document-updater-sharelatex"
2018-09-28 10:13:47 -04:00
TARGET_URL = "${env.JENKINS_URL}blue/organizations/jenkins/${JENKINS_WORKFLOW}/detail/$BRANCH_NAME/$BUILD_NUMBER/pipeline"
2019-05-07 10:44:56 -04:00
GIT_API_URL = "https://api.github.com/repos/overleaf/${GIT_PROJECT}/statuses/$GIT_COMMIT"
2018-09-28 10:13:47 -04:00
}
2017-08-11 06:06:36 -04:00
triggers {
pollSCM('* * * * *')
2018-02-15 11:28:40 -05:00
cron(cron_string)
2017-08-11 06:06:36 -04:00
}
stages {
2020-01-23 04:05:57 -05:00
2018-09-28 10:13:47 -04:00
stage('Install') {
steps {
withCredentials([usernamePassword(credentialsId: 'GITHUB_INTEGRATION', usernameVariable: 'GH_AUTH_USERNAME', passwordVariable: 'GH_AUTH_PASSWORD')]) {
sh "curl $GIT_API_URL \
--data '{ \
\"state\" : \"pending\", \
\"target_url\": \"$TARGET_URL\", \
\"description\": \"Your build is underway\", \
\"context\": \"ci/jenkins\" }' \
-u $GH_AUTH_USERNAME:$GH_AUTH_PASSWORD"
}
}
}
2018-05-23 08:52:20 -04:00
stage('Build') {
2017-08-11 06:06:36 -04:00
steps {
2018-05-23 08:52:20 -04:00
sh 'make build'
2017-08-11 06:06:36 -04:00
}
}
2018-02-15 11:28:40 -05:00
stage('Unit Tests') {
steps {
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make test_unit'
}
}
2017-08-11 06:06:36 -04:00
stage('Acceptance Tests') {
steps {
2018-02-15 11:28:40 -05:00
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make test_acceptance'
2017-08-11 06:06:36 -04:00
}
}
2018-02-15 11:28:40 -05:00
stage('Package and docker push') {
2017-08-11 06:06:36 -04:00
steps {
sh 'echo ${BUILD_NUMBER} > build_number.txt'
sh 'touch build.tar.gz' // Avoid tar warning about files changing during read
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make tar'
2018-09-28 10:13:47 -04:00
withCredentials([file(credentialsId: 'gcr.io_overleaf-ops', variable: 'DOCKER_REPO_KEY_PATH')]) {
sh 'docker login -u _json_key --password-stdin https://gcr.io/overleaf-ops < ${DOCKER_REPO_KEY_PATH}'
}
sh 'DOCKER_REPO=gcr.io/overleaf-ops make publish'
sh 'docker logout https://gcr.io/overleaf-ops'
2017-08-11 06:06:36 -04:00
}
}
2017-10-04 06:27:19 -04:00
stage('Publish to s3') {
2017-10-04 06:27:19 -04:00
steps {
2018-02-15 11:28:40 -05:00
sh 'echo ${BRANCH_NAME}-${BUILD_NUMBER} > build_number.txt'
withAWS(credentials:'S3_CI_BUILDS_AWS_KEYS', region:"${S3_REGION_BUILD_ARTEFACTS}") {
s3Upload(file:'build.tar.gz', bucket:"${S3_BUCKET_BUILD_ARTEFACTS}", path:"${JOB_NAME}/${BUILD_NUMBER}.tar.gz")
}
2018-02-15 11:28:40 -05:00
withAWS(credentials:'S3_CI_BUILDS_AWS_KEYS', region:"${S3_REGION_BUILD_ARTEFACTS}") {
// The deployment process uses this file to figure out the latest build
s3Upload(file:'build_number.txt', bucket:"${S3_BUCKET_BUILD_ARTEFACTS}", path:"${JOB_NAME}/latest")
2017-10-04 06:27:19 -04:00
}
}
}
2017-08-11 06:06:36 -04:00
}
2017-08-14 10:28:04 -04:00
2017-08-11 06:06:36 -04:00
post {
2018-02-15 11:28:40 -05:00
always {
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make test_clean'
2018-09-28 10:13:47 -04:00
sh 'make clean'
}
success {
withCredentials([usernamePassword(credentialsId: 'GITHUB_INTEGRATION', usernameVariable: 'GH_AUTH_USERNAME', passwordVariable: 'GH_AUTH_PASSWORD')]) {
sh "curl $GIT_API_URL \
--data '{ \
\"state\" : \"success\", \
\"target_url\": \"$TARGET_URL\", \
\"description\": \"Your build succeeded!\", \
\"context\": \"ci/jenkins\" }' \
-u $GH_AUTH_USERNAME:$GH_AUTH_PASSWORD"
}
2018-02-15 11:28:40 -05:00
}
2017-08-11 06:06:36 -04:00
failure {
2017-08-14 10:28:04 -04:00
mail(from: "${EMAIL_ALERT_FROM}",
to: "${EMAIL_ALERT_TO}",
2017-08-11 06:06:36 -04:00
subject: "Jenkins build failed: ${JOB_NAME}:${BUILD_NUMBER}",
body: "Build: ${BUILD_URL}")
2018-09-28 10:13:47 -04:00
withCredentials([usernamePassword(credentialsId: 'GITHUB_INTEGRATION', usernameVariable: 'GH_AUTH_USERNAME', passwordVariable: 'GH_AUTH_PASSWORD')]) {
sh "curl $GIT_API_URL \
--data '{ \
\"state\" : \"failure\", \
\"target_url\": \"$TARGET_URL\", \
\"description\": \"Your build failed\", \
\"context\": \"ci/jenkins\" }' \
-u $GH_AUTH_USERNAME:$GH_AUTH_PASSWORD"
}
2017-08-11 06:06:36 -04:00
}
}
2017-08-14 10:28:04 -04:00
2017-08-11 06:06:36 -04:00
// The options directive is for configuration that applies to the whole job.
options {
// we'd like to make sure remove old builds, so we don't fill up our storage!
buildDiscarder(logRotator(numToKeepStr:'50'))
2017-08-14 10:28:04 -04:00
2017-08-11 06:06:36 -04:00
// And we'd really like to be sure that this build doesn't hang forever, so let's time it out after:
timeout(time: 30, unit: 'MINUTES')
}
}