mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
* [monorepo] avoid corepack network requests - Download yarn via corepack as the first step in all the docker files - Turn off networking in corepack - Do not run things in the upstream node image Instead, use the monorepo image, or base layer in all the services. - Always build the base layer when running tests (uses cache) * [monorepo] install corepack in shared place * [clsi-lb] remove unrelated changes * [web] add missing DC_RUN_FLAGS * [monorepo] only rebuild test images locally Also remove spurious build config in docker-compose.ci.yml. * [server-ce] test: make yarn files available to host-admin and e2e * [monorepo] put the corepack install snippet in a few more places GitOrigin-RevId: 38005016ae5a708e12295e246269d6c18fece937
77 lines
2.4 KiB
YAML
77 lines
2.4 KiB
YAML
# This file was auto-generated, do not edit it directly.
|
|
# Instead run bin/update_build_scripts from
|
|
# https://github.com/overleaf/internal/
|
|
|
|
services:
|
|
test_unit:
|
|
build:
|
|
context: ../..
|
|
dockerfile: services/real-time/Dockerfile
|
|
target: base
|
|
volumes:
|
|
- .:/overleaf/services/real-time
|
|
- ../../node_modules:/overleaf/node_modules
|
|
- ../../libraries:/overleaf/libraries
|
|
- ../../package.json:/overleaf/package.json
|
|
- ../../.yarnrc.yml:/overleaf/.yarnrc.yml
|
|
- ../../yarn.lock:/overleaf/yarn.lock
|
|
- ../../.yarn:/overleaf/.yarn
|
|
- ../../tsconfig.backend.json:/overleaf/tsconfig.backend.json
|
|
working_dir: /overleaf/services/real-time
|
|
environment:
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
|
LOG_LEVEL: ${LOG_LEVEL:-}
|
|
MONGO_CONNECTION_STRING: mongodb://mongo/test-overleaf
|
|
NODE_ENV: test
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
REDIS_HOST: redis_test
|
|
HISTORY_REDIS_HOST: redis_test
|
|
QUEUES_REDIS_HOST: redis_test
|
|
ANALYTICS_QUEUES_REDIS_HOST: redis_test
|
|
ANALYTICS_QUEUES_BQ_SINK_REDIS_HOST: redis_test
|
|
command: yarn run --silent test:unit
|
|
user: node
|
|
depends_on:
|
|
redis_test:
|
|
condition: service_healthy
|
|
|
|
test_acceptance:
|
|
build:
|
|
context: ../..
|
|
dockerfile: services/real-time/Dockerfile
|
|
target: base
|
|
volumes:
|
|
- .:/overleaf/services/real-time
|
|
- ../../node_modules:/overleaf/node_modules
|
|
- ../../libraries:/overleaf/libraries
|
|
- ../../package.json:/overleaf/package.json
|
|
- ../../.yarnrc.yml:/overleaf/.yarnrc.yml
|
|
- ../../yarn.lock:/overleaf/yarn.lock
|
|
- ../../.yarn:/overleaf/.yarn
|
|
working_dir: /overleaf/services/real-time
|
|
environment:
|
|
RETRIES:
|
|
REDIS_HOST: redis_test
|
|
HISTORY_REDIS_HOST: redis_test
|
|
QUEUES_REDIS_HOST: redis_test
|
|
ANALYTICS_QUEUES_REDIS_HOST: redis_test
|
|
ANALYTICS_QUEUES_BQ_SINK_REDIS_HOST: redis_test
|
|
MONGO_CONNECTION_STRING: mongodb://mongo/test-overleaf
|
|
POSTGRES_HOST: postgres
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
|
LOG_LEVEL: ${LOG_LEVEL:-}
|
|
NODE_ENV: test
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
user: node
|
|
depends_on:
|
|
redis_test:
|
|
condition: service_healthy
|
|
command: yarn run --silent test:acceptance
|
|
|
|
redis_test:
|
|
image: redis:7.4.8
|
|
healthcheck:
|
|
test: ping=$$(redis-cli ping) && [ "$$ping" = 'PONG' ]
|
|
interval: 1s
|
|
retries: 20
|