Files
cowc-bench/docker-compose.yml

28 lines
715 B
YAML

services:
oldcpp:
build:
context: .
dockerfile: oldcpp.Dockerfile
environment:
RUN_MEM_LIMIT_MB: 8192
COMPILE_MEM_LIMIT_MB: 8192
COMPILE_TIMEOUT_S: 300
RUN_TIMEOUT_S: 120
volumes:
- ./results:/results
- ./runner:/runner:ro
command: ["/runner/bench.sh", "oldcpp", "/results/oldcpp.json"]
rust:
build:
context: .
dockerfile: rust.Dockerfile
environment:
RUN_MEM_LIMIT_MB: 8192
COMPILE_MEM_LIMIT_MB: 8192
COMPILE_TIMEOUT_S: 300
RUN_TIMEOUT_S: 120
volumes:
- ./results:/results
- ./runner:/runner:ro
command: ["/runner/bench.sh", "rust", "/results/rust.json"]