| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # 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
- OUTPUT_HOST_DIR: $PWD/output
- 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
|