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
|
|
|
|
2018-07-23 10:32:33 -04:00
|
|
|
environment {
|
|
|
|
GIT_PROJECT = "document-updater-sharelatex"
|
|
|
|
JENKINS_WORKFLOW = "document-updater-sharelatex"
|
|
|
|
TARGET_URL = "${env.JENKINS_URL}blue/organizations/jenkins/${JENKINS_WORKFLOW}/detail/$BRANCH_NAME/$BUILD_NUMBER/pipeline"
|
|
|
|
GIT_API_URL = "https://api.github.com/repos/sharelatex/${GIT_PROJECT}/statuses/$GIT_COMMIT"
|
|
|
|
}
|
|
|
|
|
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 {
|
2017-08-14 10:28:04 -04:00
|
|
|
stage('Install') {
|
|
|
|
agent {
|
|
|
|
docker {
|
2017-10-23 11:56:34 -04:00
|
|
|
image 'node:6.9.5'
|
2017-08-14 10:28:04 -04:00
|
|
|
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
|
|
|
|
reuseNode true
|
|
|
|
}
|
|
|
|
}
|
2017-08-11 06:06:36 -04:00
|
|
|
steps {
|
2018-07-23 10:32:33 -04:00
|
|
|
withCredentials([usernamePassword(credentialsId: 'GITHUB_INTEGRATION', usernameVariable: 'GH_AUTH_USERNAME', passwordVariable: 'GH_AUTH_PASSWORD')]) {
|
|
|
|
sh "curl $GIT_API_URL \
|
|
|
|
--data '{ \
|
|
|
|
\"state\" : \"pending\", \
|
|
|
|
\"target_url\": \"$TARGET_URL\", \
|
|
|
|
\"description\": \"Your build is underway\", \
|
|
|
|
\"context\": \"ci/jenkins\" }' \
|
|
|
|
-u $GH_AUTH_USERNAME:$GH_AUTH_PASSWORD"
|
|
|
|
}
|
|
|
|
// 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
|
2018-02-15 11:28:40 -05:00
|
|
|
// /etc/passwd file, causing the clone to fail.
|
2017-08-11 06:06:36 -04:00
|
|
|
sh 'git config --global core.logallrefupdates false'
|
2018-02-15 11:28:40 -05:00
|
|
|
sh 'rm -rf node_modules'
|
2017-08-14 10:28:04 -04:00
|
|
|
sh 'npm install && npm rebuild'
|
2017-08-11 06:06:36 -04:00
|
|
|
}
|
|
|
|
}
|
2018-02-15 11:28:40 -05:00
|
|
|
stage('Compile') {
|
2017-08-14 10:28:04 -04:00
|
|
|
agent {
|
|
|
|
docker {
|
2017-10-23 11:56:34 -04:00
|
|
|
image 'node:6.9.5'
|
2017-08-14 10:28:04 -04:00
|
|
|
reuseNode true
|
|
|
|
}
|
2017-08-11 06:06:36 -04:00
|
|
|
}
|
|
|
|
steps {
|
2018-02-15 11:28:40 -05:00
|
|
|
sh 'npm run compile:all'
|
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 {
|
2017-09-04 09:48:47 -04:00
|
|
|
sh 'echo ${BUILD_NUMBER} > build_number.txt'
|
2017-08-11 06:06:36 -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 .'
|
|
|
|
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-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'
|
2018-07-23 10:32:33 -04:00
|
|
|
sh 'make clean'
|
|
|
|
}
|
|
|
|
|
|
|
|
success {
|
|
|
|
withCredentials([usernamePassword(credentialsId: 'GITHUB_INTEGRATION', usernameVariable: 'GH_AUTH_USERNAME', passwordVariable: 'GH_AUTH_PASSWORD')]) {
|
|
|
|
sh "curl $GIT_API_URL \
|
|
|
|
--data '{ \
|
|
|
|
\"state\" : \"success\", \
|
|
|
|
\"target_url\": \"$TARGET_URL\", \
|
|
|
|
\"description\": \"Your build succeeded!\", \
|
|
|
|
\"context\": \"ci/jenkins\" }' \
|
|
|
|
-u $GH_AUTH_USERNAME:$GH_AUTH_PASSWORD"
|
|
|
|
}
|
2018-02-15 11:28:40 -05:00
|
|
|
}
|
|
|
|
|
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}")
|
2018-07-23 10:32:33 -04:00
|
|
|
withCredentials([usernamePassword(credentialsId: 'GITHUB_INTEGRATION', usernameVariable: 'GH_AUTH_USERNAME', passwordVariable: 'GH_AUTH_PASSWORD')]) {
|
|
|
|
sh "curl $GIT_API_URL \
|
|
|
|
--data '{ \
|
|
|
|
\"state\" : \"failure\", \
|
|
|
|
\"target_url\": \"$TARGET_URL\", \
|
|
|
|
\"description\": \"Your build failed\", \
|
|
|
|
\"context\": \"ci/jenkins\" }' \
|
|
|
|
-u $GH_AUTH_USERNAME:$GH_AUTH_PASSWORD"
|
|
|
|
}
|
2017-08-11 06:06:36 -04:00
|
|
|
}
|
|
|
|
}
|
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')
|
|
|
|
}
|
|
|
|
}
|