overleaf/services/real-time/Jenkinsfile

89 lines
2.6 KiB
Text
Raw Normal View History

2017-08-11 09:24:46 -04:00
pipeline {
2017-09-21 06:03:07 -04:00
agent any
2017-08-11 09:24:46 -04:00
environment {
HOME = "/tmp"
}
triggers {
pollSCM('* * * * *')
cron('@daily')
}
stages {
2017-09-21 06:03:07 -04:00
stage('Install') {
agent {
docker {
image 'node:4.2.1'
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
reuseNode true
}
}
2017-08-11 09:24:46 -04:00
steps {
// we need to disable logallrefupdates, else git clones during the npm install will require git to lookup the user id
// which does not exist in the container's /etc/passwd file, causing the clone to fail.
sh 'git config --global core.logallrefupdates false'
sh 'rm -fr node_modules'
sh 'npm install'
sh 'npm rebuild'
sh 'npm install --quiet grunt-cli'
}
}
2017-09-21 06:03:07 -04:00
stage('Compile and Test') {
agent {
docker {
image 'node:4.2.1'
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
reuseNode true
}
}
2017-08-11 09:24:46 -04:00
steps {
sh 'node_modules/.bin/grunt install'
2017-09-21 05:59:41 -04:00
sh 'node_modules/.bin/grunt compile:acceptance_tests'
2017-08-11 09:24:46 -04:00
sh 'node_modules/.bin/grunt test:unit'
}
}
2017-09-21 05:59:41 -04:00
stage('Acceptance Tests') {
steps {
sh 'docker pull sharelatex/acceptance-test-runner'
sh 'docker run --rm -v $(pwd):/app sharelatex/acceptance-test-runner'
}
}
2017-08-11 09:24:46 -04:00
stage('Package') {
steps {
2017-09-04 09:54:05 -04:00
sh 'echo ${BUILD_NUMBER} > build_number.txt'
2017-08-11 09:24:46 -04:00
sh 'touch build.tar.gz' // Avoid tar warning about files changing during read
sh 'tar -czf build.tar.gz --exclude=build.tar.gz --exclude-vcs .'
}
}
stage('Publish') {
steps {
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")
2017-09-04 09:54:05 -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 09:24:46 -04:00
}
}
}
}
post {
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')
}
}