You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
491 B
YAML
25 lines
491 B
YAML
version: "3.4"
|
|
services:
|
|
|
|
tests:
|
|
build:
|
|
context: .
|
|
target: builder
|
|
volumes:
|
|
- type: bind
|
|
source: .
|
|
target: /results
|
|
command: test --logger:trx -r /results
|
|
|
|
benchmarks:
|
|
build:
|
|
context: .
|
|
target: builder
|
|
args:
|
|
build_configuration: Release
|
|
command: run -c Release --project test/Ocelot.Benchmarks/Ocelot.Benchmarks.csproj 0 1 2 3 4
|
|
|
|
manual-test:
|
|
build: .
|
|
ports: [ "5000:80" ]
|