Skip to content

Commit 6c626a7

Browse files
committed
try to run dockerized test suite on circle ci
1 parent 761b620 commit 6c626a7

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.circleci/config.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ jobs:
77
- checkout
88
- setup_remote_docker
99
- run:
10-
name: Install dependencies
10+
name: Install Docker Compose
1111
command: |
12-
apk add --no-cache \
13-
py-pip=10.0.1-r0
14-
pip install \
15-
docker-compose==1.25.3
12+
curl -L https://github.com/docker/compose/releases/download/1.19.0/docker-compose-`uname -s`-`uname -m` > ~/docker-compose
13+
chmod +x ~/docker-compose
14+
sudo mv ~/docker-compose /usr/local/bin/docker-compose
1615
- run:
1716
name: Run tests
1817
command: |

0 commit comments

Comments
 (0)