diff --git a/.circleci/config.yml b/.circleci/config.yml index 3020259..0dad8a9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -19,8 +20,9 @@ jobs: environment: # Customize the JVM maximum heap limit MAVEN_OPTS: -Xmx3200m - + steps: + - checkout # Download and cache dependencies @@ -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