Skip to content

Commit

Permalink
Shortened docker container names in Horicromtal Centaur tests in orde…
Browse files Browse the repository at this point in the history
…r to prevent exceeding Travis log length limit of 4 Mb [BA-6480] (#5556)
  • Loading branch information
Grigoriy Sterin authored Jun 25, 2020
1 parent bda6d90 commit f93da32
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docs/developers/bitesize/ci/travis_centaur.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ or `papi_v2beta_centaur_application.conf`

- Engine Upgrade: Retrieves the [Cromwell Version](https://github.com/broadinstitute/cromwell/blob/47/project/Version.scala#L8) then retrieves the previous jar/docker-image from DockerHub. Centaur starts with the prior version, then restarts with the compiled source code.
- Horicromtal: Runs a [docker-compose](https://github.com/broadinstitute/cromwell/blob/47/src/ci/docker-compose/docker-compose-horicromtal.yml) with:
1. cromwell-database-master: started first
2. cromwell-summarizer-plus-backend: runs summarizer
3. cromwell-frontend-plus-backend: exposes HTTP
1. db-mstr: started first
2. sum-back: runs summarizer
3. front-back: exposes HTTP
- Horicromtal Engine Upgrade: Combination of Horicromtal and Engine Upgrade
- PAPI Upgrade: Tests run with Papi V1 and upon restart use Papi V2
- PAPI Upgrade New Workflows: Test definition [does not run any tests](https://travis-ci.org/broadinstitute/cromwell/jobs/475378412)
Expand Down
10 changes: 5 additions & 5 deletions src/ci/docker-compose/docker-compose-horicromtal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
# - Running the summarizer
# - Running the carboniter
# - Running the archived-metadata-deleter
cromwell-database-master:
db-mstr:
image: "broadinstitute/cromwell:${CROMWELL_TAG}"
network_mode: host
working_dir: ${CROMWELL_BUILD_ROOT_DIRECTORY}
Expand Down Expand Up @@ -41,7 +41,7 @@ services:
# Is a regular Cromwell workflow-running backend.
# Makes no changes to the config file we bring in, so always summarizes, and sometimes does carboniting and metadata
# deletion things, but only if the underlying config file says that we do.
cromwell-summarizer-plus-backend:
sum-back:
image: "broadinstitute/cromwell:${CROMWELL_TAG}"
network_mode: host
working_dir: ${CROMWELL_BUILD_ROOT_DIRECTORY}
Expand All @@ -63,7 +63,7 @@ services:
- CROMWELL_BUILD_CENTAUR_PRIOR_JDBC_PASSWORD
- CROMWELL_BUILD_CENTAUR_PRIOR_JDBC_URL
depends_on:
cromwell-database-master:
db-mstr:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost:8000"]
Expand All @@ -76,14 +76,14 @@ services:
# - Running the summarizer
# - Running the carboniter
# - Running the archived-metadata-deleter
cromwell-frontend-plus-backend:
front-back:
image: "broadinstitute/cromwell:${CROMWELL_TAG}"
network_mode: host
working_dir: ${CROMWELL_BUILD_ROOT_DIRECTORY}
volumes:
- ${CROMWELL_BUILD_ROOT_DIRECTORY}:${CROMWELL_BUILD_ROOT_DIRECTORY}
depends_on:
cromwell-database-master:
db-mstr:
condition: service_healthy
command: ["server"]
environment:
Expand Down

0 comments on commit f93da32

Please sign in to comment.