mirror of
https://github.com/opf/openproject.git
synced 2026-06-13 19:20:00 +00:00
cd371fe093
* On-demand hosted action runner, and use runtime logs to improve test speed * Add support for uploading capybara screenshots to S3
22 lines
470 B
YAML
22 lines
470 B
YAML
version: "3.7"
|
|
|
|
networks:
|
|
testing:
|
|
|
|
services:
|
|
ci:
|
|
build:
|
|
context: ./docker/ci/
|
|
dockerfile: Dockerfile
|
|
environment:
|
|
RSPEC_RETRY_RETRY_COUNT: "${CI_RETRY_COUNT:-3}"
|
|
JOBS: "${CI_JOBS:-8}"
|
|
tmpfs:
|
|
- "/tmp"
|
|
volumes:
|
|
- ".:/home/dev/openproject"
|
|
- "${CI_CACHE_PATH:-/tmp}/op-bundle:/usr/local/bundle"
|
|
- "${CI_CACHE_PATH:-/tmp}/op-node:/home/dev/openproject/frontend/node_modules"
|
|
networks:
|
|
- testing
|