go.uber.org/yarpc@v1.72.1/docker-compose.yml (about)

     1  version: '3'
     2  services:
     3  
     4    yarpc-go-1.17:
     5      build:
     6        context: .
     7        dockerfile: Dockerfile.1.17
     8      environment:
     9        - TEST_TIME_SCALE=5
    10        - THIS_CHUNK=${BUILDKITE_PARALLEL_JOB}
    11        - TOTAL_CHUNKS=${BUILDKITE_PARALLEL_JOB_COUNT}
    12        - CODECOV_TOKEN
    13        - CI=true
    14        - BUILDKITE
    15        - BUILDKITE_BRANCH
    16        - BUILDKITE_BUILD_NUMBER
    17        - BUILDKITE_BUILD_URL
    18        - BUILDKITE_COMMIT
    19        - BUILDKITE_JOB_ID
    20        - BUILDKITE_PROJECT_SLUG
    21        - BUILDKITE_REPO
    22        - GO111MODULE=on
    23        - SSH_AUTH_SOCK=/ssh-agent
    24      volumes:
    25        - $SSH_AUTH_SOCK:/ssh-agent
    26      # We mount the host's SSH Agent unix socket at /ssh-agent in the container
    27      # and tell the container where to find it so that the container can
    28      # actually push commits.
    29  
    30    yarpc-go-1.18:
    31      build:
    32        context: .
    33        dockerfile: Dockerfile.1.18
    34      environment:
    35        - TEST_TIME_SCALE=5
    36        - THIS_CHUNK=${BUILDKITE_PARALLEL_JOB}
    37        - TOTAL_CHUNKS=${BUILDKITE_PARALLEL_JOB_COUNT}
    38        - CODECOV_TOKEN
    39        - CI=true
    40        - BUILDKITE
    41        - BUILDKITE_BRANCH
    42        - BUILDKITE_BUILD_NUMBER
    43        - BUILDKITE_BUILD_URL
    44        - BUILDKITE_COMMIT
    45        - BUILDKITE_JOB_ID
    46        - BUILDKITE_PROJECT_SLUG
    47        - BUILDKITE_REPO
    48        - GO111MODULE=on