Merge pull request #17 from sharelatex/jg-realtime-acceptance-tests

realtime acceptance tests
This commit is contained in:
Joe Green 2017-09-21 11:22:32 +01:00 committed by GitHub
commit afc51482c1

View file

@ -1,11 +1,6 @@
pipeline {
agent {
docker {
image 'node:4.2.1'
args "-v /var/lib/jenkins/.npm:/tmp/.npm"
}
}
agent any
environment {
HOME = "/tmp"
@ -17,29 +12,42 @@ pipeline {
}
stages {
stage('Set up') {
stage('Install') {
agent {
docker {
image 'node:4.2.1'
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
reuseNode true
}
}
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'
}
}
stage('Install') {
steps {
sh 'rm -fr node_modules'
sh 'npm install'
sh 'npm rebuild'
sh 'npm install --quiet grunt-cli'
}
}
stage('Compile') {
stage('Compile and Test') {
agent {
docker {
image 'node:4.2.1'
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
reuseNode true
}
}
steps {
sh 'node_modules/.bin/grunt install'
sh 'node_modules/.bin/grunt compile:acceptance_tests'
sh 'node_modules/.bin/grunt test:unit'
}
}
stage('Test') {
stage('Acceptance Tests') {
steps {
sh 'node_modules/.bin/grunt test:unit'
sh 'docker pull sharelatex/acceptance-test-runner'
sh 'docker run --rm -v $(pwd):/app sharelatex/acceptance-test-runner'
}
}
stage('Package') {