We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 336e36b commit fb88339Copy full SHA for fb88339
.circleci/config.yml
@@ -10,6 +10,7 @@ jobs:
10
machine: true
11
resource_class: medium
12
steps:
13
+ # CircleCI has its own docker-compose already installed, but as of this writing, their version is too old to understand our docker-compose.yml
14
- run:
15
name: Install Docker Compose
16
command: |
@@ -44,6 +45,9 @@ jobs:
44
45
./bin/metacpan-docker init
46
docker-compose --verbose up -d api_test
47
name: compose up
48
+ # Since we're running docker-compose -d, we don't actually know if
49
+ # Elasticsearch is available at the time this build step begins. We
50
+ # probably need to wait for it here, so we'll add our own check.
51
52
53
pushd metacpan-docker
0 commit comments