Skip to content

Commit 6b6991d

Browse files
authored
Merge branch 'master' into code_polish
2 parents 6666c07 + e7cab06 commit 6b6991d

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.circleci/config.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
#
33
# Check https://circleci.com/docs/2.0/language-java/ for more details
44
#
5-
version: 2
5+
version: 2.1
6+
67
jobs:
78
build:
89
docker:
910
- image: circleci/openjdk:8u171-jdk
10-
11-
- image: redisai/redisai:edge
12-
port: 6379:6379
13-
11+
- image: redislabs/redisai:edge-cpu-bionic
12+
1413
working_directory: ~/repo
1514

1615
environment:
@@ -34,14 +33,14 @@ jobs:
3433
paths:
3534
- ~/.m2
3635
key: v1-dependencies-{{ checksum "pom.xml" }}
37-
36+
3837
# validate code format
3938
- run: mvn git-code-format:validate-code-format -Dgcf.globPattern=**/*
4039
# run tests!
4140
- run: mvn integration-test
42-
- run: mvn cobertura:cobertura
43-
- run: bash <(curl -s https://codecov.io/bash) -t ${CODECOV_TOKEN}
44-
41+
- run: mvn cobertura:cobertura
42+
- run: bash <(curl -s https://codecov.io/bash) -t ${CODECOV_TOKEN}
43+
4544
#- run: mvn -s .circleci.settings.xml -DskipTests deploy
4645
workflows:
4746
version: 2

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>redis.clients</groupId>
5656
<artifactId>jedis</artifactId>
57-
<version>3.5.2</version>
57+
<version>3.6.0</version>
5858
<scope>compile</scope>
5959
</dependency>
6060
</dependencies>

0 commit comments

Comments
 (0)