2018-05-23 13:08:34 +00:00
|
|
|
# This file was auto-generated, do not edit it directly.
|
|
|
|
# Instead run bin/update_build_scripts from
|
2022-09-01 15:32:43 +00:00
|
|
|
# https://github.com/overleaf/internal/
|
2018-05-23 13:08:34 +00:00
|
|
|
|
2021-11-05 09:39:05 +00:00
|
|
|
version: "2.3"
|
2018-05-23 13:08:34 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
test_unit:
|
2018-10-03 12:46:00 +00:00
|
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
2018-05-23 13:08:34 +00:00
|
|
|
user: node
|
|
|
|
command: npm run test:unit:_run
|
2019-06-21 09:06:02 +00:00
|
|
|
environment:
|
|
|
|
NODE_ENV: test
|
2021-11-05 09:39:05 +00:00
|
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
|
|
|
2019-01-31 16:13:21 +00:00
|
|
|
|
2018-05-23 13:08:34 +00:00
|
|
|
test_acceptance:
|
|
|
|
build: .
|
2018-10-03 12:46:00 +00:00
|
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
2018-05-23 13:08:34 +00:00
|
|
|
environment:
|
2018-10-03 12:46:00 +00:00
|
|
|
ELASTIC_SEARCH_DSN: es:9200
|
2018-05-23 13:08:34 +00:00
|
|
|
MONGO_HOST: mongo
|
|
|
|
POSTGRES_HOST: postgres
|
2018-10-03 12:46:00 +00:00
|
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
2019-06-21 09:06:02 +00:00
|
|
|
NODE_ENV: test
|
2021-11-05 09:39:05 +00:00
|
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
2018-05-23 13:08:34 +00:00
|
|
|
depends_on:
|
2020-01-13 18:20:38 +00:00
|
|
|
mongo:
|
|
|
|
condition: service_healthy
|
2018-05-23 13:08:34 +00:00
|
|
|
user: node
|
|
|
|
command: npm run test:acceptance:_run
|
|
|
|
|
2021-11-05 09:39:05 +00:00
|
|
|
|
2019-01-31 16:13:21 +00:00
|
|
|
tar:
|
|
|
|
build: .
|
|
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
|
|
volumes:
|
|
|
|
- ./:/tmp/build/
|
|
|
|
command: tar -czf /tmp/build/build.tar.gz --exclude=build.tar.gz --exclude-vcs .
|
|
|
|
user: root
|
2018-05-23 13:08:34 +00:00
|
|
|
mongo:
|
2024-02-13 10:06:03 +00:00
|
|
|
image: mongo:6.0.13
|
2023-04-18 11:15:34 +00:00
|
|
|
command: --replSet overleaf
|
2020-11-23 15:56:33 +00:00
|
|
|
healthcheck:
|
2024-02-13 10:06:03 +00:00
|
|
|
test: "mongosh --quiet localhost/test --eval 'quit(db.runCommand({ ping: 1 }).ok ? 0 : 1)'"
|
2020-11-23 15:56:33 +00:00
|
|
|
interval: 1s
|
|
|
|
retries: 20
|