Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk
machine:
image: circleci/classic:latest
# docker:
# specify the version you desire here

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
Expand All @@ -19,8 +20,9 @@ jobs:
environment:
# Customize the JVM maximum heap limit
MAVEN_OPTS: -Xmx3200m

steps:

- checkout

# Download and cache dependencies
Expand All @@ -38,5 +40,7 @@ jobs:
key: v1-dependencies-{{ checksum "pom.xml" }}

# run tests!
- run: mvn integration-test
- run: |
docker run -d -p 6379:6379 -it --rm --name redisgraph redislabs/redisgraph
mvn integration-test