Skip to content

Commit 7196771

Browse files
committed
run redisgraph in another docker container
1 parent f16525a commit 7196771

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.circleci/config.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
version: 2
66
jobs:
77
build:
8-
docker:
9-
# specify the version you desire here
10-
- image: circleci/openjdk:8-jdk
8+
machine:
9+
image: circleci/classic:latest
10+
# docker:
11+
# specify the version you desire here
1112

1213
# Specify service dependencies here if necessary
1314
# CircleCI maintains a library of pre-built images
@@ -19,8 +20,9 @@ jobs:
1920
environment:
2021
# Customize the JVM maximum heap limit
2122
MAVEN_OPTS: -Xmx3200m
22-
23+
2324
steps:
25+
2426
- checkout
2527

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

4042
# run tests!
41-
- run: mvn integration-test
43+
- run: |
44+
docker run -d -p 6379:6379 -it --rm --name redisgraph redislabs/redisgraph
45+
mvn integration-test
4246

0 commit comments

Comments
 (0)