Skip to content

Commit 62b6f62

Browse files
Added docker-compose setup for circle
1 parent 87f472f commit 62b6f62

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.circleci/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ jobs:
2424
- run:
2525
name: "Running build"
2626
command: ./mvnw -s .settings.xml clean org.jacoco:jacoco-maven-plugin:prepare-agent install -U -P sonar -nsu --batch-mode -Dmaven.test.redirectTestOutputToFile=true -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
27+
- run:
28+
name: Install Docker Compose
29+
command: |
30+
curl -L https://github.com/docker/compose/releases/download/1.19.0/docker-compose-`uname -s`-`uname -m` > ~/docker-compose
31+
chmod +x ~/docker-compose
32+
sudo mv ~/docker-compose /usr/local/bin/docker-compose
33+
- setup_remote_docker
2734
- run:
2835
name: "Running e2e with documentation apps"
2936
command: ./scripts/runAcceptanceTestsOfDocApps.sh

0 commit comments

Comments
 (0)