| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- # 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:
- image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
- volumes:
- - ./reports:/overleaf/services/clsi/reports
- - ../../tsconfig.backend.json:/overleaf/tsconfig.backend.json
- command: yarn run test:unit:_run
- environment:
- CI:
- MONGO_CONNECTION_STRING: mongodb://mongo/test-overleaf
- NODE_ENV: test
- NODE_OPTIONS: "--unhandled-rejections=strict"
- VITEST_NO_CACHE: true
- test_acceptance:
- build: .
- image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
- environment:
- CI:
- RETRIES:
- MONGO_HOST: mongo
- POSTGRES_HOST: postgres
- MOCHA_GREP: ${MOCHA_GREP}
- NODE_ENV: test
- NODE_OPTIONS: "--unhandled-rejections=strict"
- DOWNLOAD_HOST: http://clsi-nginx:8080
- ALLOWED_COMPILE_GROUPS: clsi-perf simple-latex-file
- ENABLE_PDF_CACHING: true
- PDF_CACHING_ENABLE_WORKER_POOL: true
- ALLOWED_IMAGES: quay.io/sharelatex/texlive-full:2017.1 quay.io/sharelatex/texlive-full:2025.1 quay.io/sharelatex/pandoc:3.9
- TEXLIVE_IMAGE: quay.io/sharelatex/texlive-full:2025.1
- TEX_LIVE_IMAGE_NAME_OVERRIDE: us-east1-docker.pkg.dev/overleaf-ops/ol-docker
- TEXLIVE_IMAGE_USER: tex
- SANDBOXED_COMPILES: true
- SANDBOXED_COMPILES_HOST_DIR_COMPILES: $PWD/compiles
- SANDBOXED_COMPILES_HOST_DIR_OUTPUT: $PWD/output
- ENABLE_PANDOC_CONVERSIONS: true
- volumes:
- - ./reports:/overleaf/services/clsi/reports
- - ./compiles:/overleaf/services/clsi/compiles
- - ./output:/overleaf/services/clsi/output
- - /var/run/docker.sock:/var/run/docker.sock
- depends_on:
- clsi-nginx:
- condition: service_started
- command: yarn run test:acceptance
- 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
- clsi-nginx:
- image: nginx:1.28
- read_only: true
- tmpfs:
- - /tmp
- - /var/cache/nginx
- - /run
- volumes:
- - ./output:/output:ro
- - ./nginx.conf:/etc/nginx/conf.d/nginx.conf:ro
- - ./tiny.pdf:/var/clsi/tiny.pdf:ro
|