mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Change to node 6
This commit is contained in:
parent
1b3abe3b9a
commit
0f4a48b410
4 changed files with 7 additions and 7 deletions
|
@ -1 +1 @@
|
||||||
8.11.1
|
6.14.1
|
||||||
|
|
4
services/chat/Jenkinsfile
vendored
4
services/chat/Jenkinsfile
vendored
|
@ -12,7 +12,7 @@ pipeline {
|
||||||
stage('Install') {
|
stage('Install') {
|
||||||
agent {
|
agent {
|
||||||
docker {
|
docker {
|
||||||
image 'node:8.11.1'
|
image 'node:6.14.1'
|
||||||
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
|
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
|
||||||
reuseNode true
|
reuseNode true
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ pipeline {
|
||||||
stage('Compile') {
|
stage('Compile') {
|
||||||
agent {
|
agent {
|
||||||
docker {
|
docker {
|
||||||
image 'node:8.11.1'
|
image 'node:6.14.1'
|
||||||
reuseNode true
|
reuseNode true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,14 +7,14 @@ version: "2"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
test_unit:
|
test_unit:
|
||||||
image: node:8.11.1
|
image: node:6.14.1
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
entrypoint: npm run test:unit:_run
|
entrypoint: npm run test:unit:_run
|
||||||
|
|
||||||
test_acceptance:
|
test_acceptance:
|
||||||
image: node:8.11.1
|
image: node:6.14.1
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
|
|
|
@ -7,14 +7,14 @@ version: "2"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
test_unit:
|
test_unit:
|
||||||
image: node:8.11.1
|
image: node:6.14.1
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
entrypoint: npm run test:unit
|
entrypoint: npm run test:unit
|
||||||
|
|
||||||
test_acceptance:
|
test_acceptance:
|
||||||
image: node:8.11.1
|
image: node:6.14.1
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in a new issue