mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
864ac883cd
[misc] align CI pipelines GitOrigin-RevId: e2a74cbbff15986d5ffc8f5befa3697d406b8cdd
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
# This file was auto-generated, do not edit it directly.
|
|
# Instead run bin/update_build_scripts from
|
|
# https://github.com/overleaf/internal/
|
|
|
|
version: "2.3"
|
|
|
|
services:
|
|
test_unit:
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
command: npm run test:unit:_run
|
|
environment:
|
|
NODE_ENV: test
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
|
|
|
|
test_acceptance:
|
|
build: .
|
|
image: ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
environment:
|
|
ELASTIC_SEARCH_DSN: es:9200
|
|
MONGO_HOST: mongo
|
|
POSTGRES_HOST: postgres
|
|
MOCHA_GREP: ${MOCHA_GREP}
|
|
NODE_ENV: test
|
|
NODE_OPTIONS: "--unhandled-rejections=strict"
|
|
ENABLE_PDF_CACHING: "true"
|
|
PDF_CACHING_ENABLE_WORKER_POOL: "true"
|
|
ALLOWED_IMAGES: quay.io/sharelatex/texlive-full:2017.1
|
|
TEXLIVE_IMAGE: quay.io/sharelatex/texlive-full:2017.1
|
|
TEX_LIVE_IMAGE_NAME_OVERRIDE: gcr.io/overleaf-ops
|
|
TEXLIVE_IMAGE_USER: "tex"
|
|
DOCKER_RUNNER: "true"
|
|
COMPILES_HOST_DIR: $PWD/compiles
|
|
volumes:
|
|
- ./compiles:/overleaf/services/clsi/compiles
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
command: npm 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
|