overleaf/services/document-updater/Jenkinsfile

69 lines
1.7 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
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 {
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 publish build') {
2017-08-11 06:06:36 -04:00
steps {
2018-05-23 08:52:20 -04:00
sh 'make publish'
2017-08-11 06:06:36 -04:00
}
}
2017-10-04 06:27:19 -04:00
2018-02-15 11:28:40 -05:00
stage('Publish build number') {
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}") {
// 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'
}
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}")
}
}
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')
}
}