Skip to content

Commit

Permalink
Added docker-compose setup for circle
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Apr 13, 2018
1 parent 87f472f commit 62b6f62
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .circleci/config.yml
Expand Up @@ -24,6 +24,13 @@ jobs:
- run:
name: "Running build"
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
- run:
name: Install Docker Compose
command: |
curl -L https://github.com/docker/compose/releases/download/1.19.0/docker-compose-`uname -s`-`uname -m` > ~/docker-compose
chmod +x ~/docker-compose
sudo mv ~/docker-compose /usr/local/bin/docker-compose
- setup_remote_docker
- run:
name: "Running e2e with documentation apps"
command: ./scripts/runAcceptanceTestsOfDocApps.sh
Expand Down

0 comments on commit 62b6f62

Please sign in to comment.