mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 07:02:47 +00:00
updated node version to v10 and removed v8 profiler (#25)
This commit is contained in:
parent
0eba057cef
commit
0518840b4e
7 changed files with 3102 additions and 825 deletions
|
@ -1 +1 @@
|
|||
6.16.0
|
||||
10.16.0
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:6.16.0 as app
|
||||
FROM node:10.16.0 as app
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
@ -11,7 +11,7 @@ COPY . /app
|
|||
|
||||
|
||||
|
||||
FROM node:6.16.0
|
||||
FROM node:10.16.0
|
||||
|
||||
COPY --from=app /app /app
|
||||
|
||||
|
|
13
services/spelling/Jenkinsfile
vendored
13
services/spelling/Jenkinsfile
vendored
|
@ -36,13 +36,12 @@ pipeline {
|
|||
}
|
||||
}
|
||||
|
||||
// should be enabled once Node version is updated to >=8
|
||||
// stage('Linting') {
|
||||
// steps {
|
||||
// sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make format'
|
||||
// sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make lint'
|
||||
// }
|
||||
// }
|
||||
stage('Linting') {
|
||||
steps {
|
||||
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make format'
|
||||
sh 'DOCKER_COMPOSE_FLAGS="-f docker-compose.ci.yml" make lint'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Unit Tests') {
|
||||
steps {
|
||||
|
|
|
@ -34,16 +34,6 @@ server.get('/status', (req, res) => res.send({ status: 'spelling api is up' }))
|
|||
|
||||
server.get('/health_check', HealthCheckController.healthCheck)
|
||||
|
||||
const profiler = require('v8-profiler')
|
||||
server.get('/profile', function(req, res) {
|
||||
const time = parseInt(req.query.time || '1000')
|
||||
profiler.startProfiling('test')
|
||||
return setTimeout(function() {
|
||||
const profile = profiler.stopProfiling('test')
|
||||
return res.json(profile)
|
||||
}, time)
|
||||
})
|
||||
|
||||
const host =
|
||||
__guard__(
|
||||
Settings.internal != null ? Settings.internal.spelling : undefined,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
spelling
|
||||
--node-version=6.16.0
|
||||
--node-version=10.16.0
|
||||
--script-version=1.1.21
|
||||
--build-target=docker
|
||||
--dependencies=mongo,redis
|
||||
|
|
3893
services/spelling/npm-shrinkwrap.json
generated
3893
services/spelling/npm-shrinkwrap.json
generated
File diff suppressed because it is too large
Load diff
|
@ -36,8 +36,7 @@
|
|||
"redis": "~0.8.4",
|
||||
"request": "^2.53.0",
|
||||
"settings-sharelatex": "^1.1.0",
|
||||
"underscore": "1.4.4",
|
||||
"v8-profiler": "^5.2.4"
|
||||
"underscore": "1.4.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"bunyan": "^1.0.0",
|
||||
|
|
Loading…
Add table
Reference in a new issue