mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Move make clean step to before compile
This commit is contained in:
parent
e9733514af
commit
e895a495d6
1 changed files with 13 additions and 13 deletions
26
services/web/Jenkinsfile
vendored
26
services/web/Jenkinsfile
vendored
|
@ -70,6 +70,19 @@ pipeline {
|
||||||
sh 'ls -l node_modules/.bin'
|
sh 'ls -l node_modules/.bin'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('Unit Tests') {
|
||||||
|
steps {
|
||||||
|
sh 'make clean install' // Removes js files, so do before compile
|
||||||
|
sh 'make test_unit MOCHA_ARGS="--reporter=tap"'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Acceptance Tests') {
|
||||||
|
steps {
|
||||||
|
sh 'make test_acceptance MOCHA_ARGS="--reporter=tap"'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Compile') {
|
stage('Compile') {
|
||||||
agent {
|
agent {
|
||||||
|
@ -109,19 +122,6 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Unit Tests') {
|
|
||||||
steps {
|
|
||||||
sh 'make clean install'
|
|
||||||
sh 'make test_unit MOCHA_ARGS="--reporter=tap"'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage('Acceptance Tests') {
|
|
||||||
steps {
|
|
||||||
sh 'make test_acceptance MOCHA_ARGS="--reporter=tap"'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage('Package') {
|
stage('Package') {
|
||||||
steps {
|
steps {
|
||||||
sh 'rm -rf ./node_modules/grunt*'
|
sh 'rm -rf ./node_modules/grunt*'
|
||||||
|
|
Loading…
Reference in a new issue