2017-08-11 06:06:36 -04:00
|
|
|
pipeline {
|
|
|
|
|
2017-08-14 10:28:04 -04:00
|
|
|
agent any
|
|
|
|
|
2017-08-11 06:06:36 -04:00
|
|
|
triggers {
|
|
|
|
pollSCM('* * * * *')
|
|
|
|
cron('@daily')
|
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
2017-08-14 10:28:04 -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 06:06:36 -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'
|
2017-08-14 10:28:04 -04:00
|
|
|
sh 'npm install && npm rebuild'
|
2017-08-11 06:06:36 -04:00
|
|
|
sh 'npm install --quiet grunt-cli'
|
|
|
|
}
|
|
|
|
}
|
2017-08-14 10:28:04 -04:00
|
|
|
stage('Compile and Test') {
|
|
|
|
agent {
|
|
|
|
docker {
|
|
|
|
image 'node:4.2.1'
|
|
|
|
reuseNode true
|
|
|
|
}
|
2017-08-11 06:06:36 -04:00
|
|
|
}
|
|
|
|
steps {
|
2017-08-14 10:28:04 -04:00
|
|
|
sh 'node_modules/.bin/grunt compile'
|
2017-08-14 10:33:30 -04:00
|
|
|
sh 'node_modules/.bin/grunt compile:acceptance_tests'
|
2017-08-11 06:06:36 -04:00
|
|
|
sh 'NODE_ENV=development node_modules/.bin/grunt test:unit'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Acceptance Tests') {
|
|
|
|
steps {
|
2017-08-14 10:28:04 -04:00
|
|
|
sh 'docker pull sharelatex/acceptance-test-runner'
|
|
|
|
sh 'docker run --rm -v $(pwd):/app sharelatex/acceptance-test-runner'
|
2017-08-11 06:06:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Package') {
|
|
|
|
steps {
|
|
|
|
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-08-14 10:28:04 -04:00
|
|
|
|
2017-08-11 06:06:36 -04:00
|
|
|
post {
|
|
|
|
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')
|
|
|
|
}
|
|
|
|
}
|