overleaf/services/docstore/Jenkinsfile

72 lines
2 KiB
Text
Raw Normal View History

2018-05-23 06:27:31 -04:00
String cron_string = BRANCH_NAME == "master" ? "@daily" : ""
2017-08-11 06:09:41 -04:00
2018-05-23 06:27:31 -04:00
pipeline {
2017-08-14 10:34:34 -04:00
agent any
2018-05-23 06:35:30 -04:00
2017-08-11 06:09:41 -04:00
triggers {
pollSCM('* * * * *')
2018-05-23 06:27:31 -04:00
cron(cron_string)
2017-08-11 06:09:41 -04:00
}
stages {
2018-05-23 06:27:31 -04:00
stage('Build') {
2017-08-11 06:09:41 -04:00
steps {
2018-05-23 06:27:31 -04:00
sh 'make build'
2017-08-11 06:09:41 -04:00
}
}
2018-05-23 06:27:31 -04:00
stage('Unit Tests') {
2017-08-11 06:09:41 -04:00
steps {
2018-05-23 06:27:31 -04:00
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make test_unit'
2017-08-11 06:09:41 -04:00
}
}
2018-05-23 06:27:31 -04:00
2017-08-11 06:09:41 -04:00
stage('Acceptance Tests') {
steps {
2018-05-23 07:32:37 -04:00
withCredentials([usernamePassword(credentialsId: 'S3_DOCSTORE_TEST_AWS_KEYS', passwordVariable: 'AWS_SECRET_ACCESS_KEY', usernameVariable: 'AWS_ACCESS_KEY_ID')]) {
sh 'AWS_BUCKET="sl-doc-archive-testing" AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make test_acceptance'
2018-05-23 06:43:54 -04:00
}
2017-08-11 06:09:41 -04:00
}
}
2018-05-23 06:27:31 -04:00
2018-05-23 06:43:54 -04:00
2018-05-23 06:27:31 -04:00
stage('Package and publish build') {
2017-08-11 06:09:41 -04:00
steps {
2018-05-23 06:27:31 -04:00
sh 'make publish'
2017-08-11 06:09:41 -04:00
}
}
2018-05-23 06:27:31 -04:00
stage('Publish build number') {
2017-08-11 06:09:41 -04:00
steps {
2018-05-23 06:27:31 -04:00
sh 'echo ${BRANCH_NAME}-${BUILD_NUMBER} > build_number.txt'
2017-08-11 06:09:41 -04:00
withAWS(credentials:'S3_CI_BUILDS_AWS_KEYS', region:"${S3_REGION_BUILD_ARTEFACTS}") {
2017-09-04 09:48:21 -04:00
// 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-08-11 06:09:41 -04:00
}
}
}
}
2017-08-14 10:34:34 -04:00
2017-08-11 06:09:41 -04:00
post {
2018-05-23 06:27:31 -04:00
always {
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make test_clean'
}
2017-08-11 06:09:41 -04:00
failure {
2017-08-14 10:34:34 -04:00
mail(from: "${EMAIL_ALERT_FROM}",
to: "${EMAIL_ALERT_TO}",
2017-08-11 06:09:41 -04:00
subject: "Jenkins build failed: ${JOB_NAME}:${BUILD_NUMBER}",
body: "Build: ${BUILD_URL}")
}
}
2017-08-14 10:34:34 -04:00
2017-08-11 06:09:41 -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:34:34 -04:00
2017-08-11 06:09:41 -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')
}
}