We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f16525a commit 7196771Copy full SHA for 7196771
.circleci/config.yml
@@ -5,9 +5,10 @@
5
version: 2
6
jobs:
7
build:
8
- docker:
9
- # specify the version you desire here
10
- - image: circleci/openjdk:8-jdk
+ machine:
+ image: circleci/classic:latest
+ # docker:
11
+ # specify the version you desire here
12
13
# Specify service dependencies here if necessary
14
# CircleCI maintains a library of pre-built images
@@ -19,8 +20,9 @@ jobs:
19
20
environment:
21
# Customize the JVM maximum heap limit
22
MAVEN_OPTS: -Xmx3200m
-
23
+
24
steps:
25
26
- checkout
27
28
# Download and cache dependencies
@@ -38,5 +40,7 @@ jobs:
38
40
key: v1-dependencies-{{ checksum "pom.xml" }}
39
41
42
# run tests!
- - run: mvn integration-test
43
+ - run: |
44
+ docker run -d -p 6379:6379 -it --rm --name redisgraph redislabs/redisgraph
45
+ mvn integration-test
46
0 commit comments