mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
fca95b5b27
- 1.1.3 build scripts - add env vars for configuring s3 - add docker file
70 lines
2 KiB
Groovy
70 lines
2 KiB
Groovy
String cron_string = BRANCH_NAME == "master" ? "@daily" : ""
|
|
|
|
pipeline {
|
|
agent any
|
|
|
|
triggers {
|
|
pollSCM('* * * * *')
|
|
cron(cron_string)
|
|
}
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'make build'
|
|
}
|
|
}
|
|
|
|
stage('Unit Tests') {
|
|
steps {
|
|
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make test_unit'
|
|
}
|
|
}
|
|
|
|
stage('Acceptance Tests') {
|
|
steps {
|
|
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'
|
|
}
|
|
}
|
|
}
|
|
|
|
stage('Package and publish build') {
|
|
steps {
|
|
sh 'make publish'
|
|
}
|
|
}
|
|
|
|
stage('Publish build number') {
|
|
steps {
|
|
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")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
post {
|
|
always {
|
|
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make test_clean'
|
|
}
|
|
|
|
failure {
|
|
mail(from: "${EMAIL_ALERT_FROM}",
|
|
to: "${EMAIL_ALERT_TO}",
|
|
subject: "Jenkins build failed: ${JOB_NAME}:${BUILD_NUMBER}",
|
|
body: "Build: ${BUILD_URL}")
|
|
}
|
|
}
|
|
|
|
// 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'))
|
|
|
|
// 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')
|
|
}
|
|
}
|