Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .circleci.settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<servers>
<server>
<id>ossrh</id>
<username>${env.OSSRH_USERNMAE}</username>
<username>${env.OSSRH_USERNAME}</username>
<password>${env.OSSRH_PASSWORD}</password>
</server>
<server>
Expand Down
24 changes: 14 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
build:
docker:
- image: circleci/openjdk:8u171-jdk

- image: redislabs/rejson:edge
port: 6379:6379

working_directory: ~/repo

environment:
Expand All @@ -34,19 +34,21 @@ jobs:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}

# run tests!
- run: mvn integration-test
- run: mvn cobertura:cobertura
- run: bash <(curl -s https://codecov.io/bash) -t ${CODECOV_TOKEN}
- run: mvn integration-test
- run: mvn cobertura:cobertura
- run: bash <(curl -s https://codecov.io/bash) -t ${CODECOV_TOKEN}

- run: mvn -s .circleci.settings.xml -DskipTests deploy

workflows:
version: 2
commit:
jobs:
- build
- build:
context:
- common
nightly:
triggers:
- schedule:
Expand All @@ -56,4 +58,6 @@ workflows:
only:
- master
jobs:
- build
- build:
context:
- common