From 0cb0afc02ac951f7a59a95f50bd14882bc672a68 Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Thu, 8 Dec 2022 10:35:30 +0200 Subject: [PATCH] removing circle and ensuring we redirect to active libraries --- .circleci/config.yml | 83 -------------------------------------------- README.md | 3 +- 2 files changed, 1 insertion(+), 85 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 8e6e624..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,83 +0,0 @@ -version: 2.1 -commands: - early_return_for_forked_pull_requests: - description: >- - If this build is from a fork, stop executing the current job and return success. - This is useful to avoid steps that will fail due to missing credentials. - steps: - - run: - name: Early return if this build is from a forked PR - command: | - if [ -n "$CIRCLE_PR_NUMBER" ]; then - echo "Nothing to do for forked PRs, so marking this step successful" - circleci step halt - fi - -jobs: - build: - docker: - - image: circleci/openjdk:8u171-jdk - - image: redislabs/rebloom:edge - - image: redislabs/rebloom:edge - command: ['--port', '7379', '--loadmodule', '/usr/lib/redis/modules/redisbloom.so', '--cluster-enabled', 'yes', '--cluster-config-file /tmp/redis_cluster_node1.conf'] - - image: redislabs/rebloom:edge - command: ['--port', '7380', '--loadmodule', '/usr/lib/redis/modules/redisbloom.so', '--cluster-enabled', 'yes', '--cluster-config-file /tmp/redis_cluster_node2.conf'] - - image: redislabs/rebloom:edge - command: ['--port', '7381', '--loadmodule', '/usr/lib/redis/modules/redisbloom.so', '--cluster-enabled', 'yes', '--cluster-config-file /tmp/redis_cluster_node3.conf'] - - working_directory: ~/repo - - environment: - # Customize the JVM maximum heap limit - MAVEN_OPTS: -Xmx3200m - - steps: - - - checkout - - # Download and cache dependencies - - restore_cache: - keys: - - v1-dependencies-{{ checksum "pom.xml" }} - # fallback to using the latest cache if no exact match is found - - v1-dependencies- - - - run: mvn dependency:go-offline - - - save_cache: - paths: - - ~/.m2 - key: v1-dependencies-{{ checksum "pom.xml" }} - - # run tests! - # - run: mvn pmd:check - - - run: mvn integration-test - - - run: mvn cobertura:cobertura - - - run: bash <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/codecov) - - - early_return_for_forked_pull_requests - - - run: mvn -s .circleci.settings.xml -DskipTests -Dgpg.skip deploy - -workflows: - version: 2 - commit: - jobs: - - build: - context: - - common - nightly: - triggers: - - schedule: - cron: "0 0 * * *" - filters: - branches: - only: - - master - jobs: - - build: - context: - - common diff --git a/README.md b/README.md index 47149f6..7c65136 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ [![license](https://img.shields.io/github/license/RedisBloom/JRedisBloom.svg)](https://github.com/RedisBloom/JRedisBloom) [![GitHub issues](https://img.shields.io/github/release/RedisBloom/JRedisBloom.svg)](https://github.com/RedisBloom/JRedisBloom/releases/latest) -[![CircleCI](https://circleci.com/gh/RedisBloom/JRedisBloom/tree/master.svg?style=svg)](https://circleci.com/gh/RedisBloom/JRedisBloom/tree/master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.redislabs/jrebloom/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.redislabs/jrebloom) [![Javadocs](https://www.javadoc.io/badge/com.redislabs/jrebloom.svg)](https://www.javadoc.io/doc/com.redislabs/jrebloom) [![Codecov](https://codecov.io/gh/RedisBloom/JRedisBloom/branch/master/graph/badge.svg)](https://codecov.io/gh/RedisBloom/JRedisBloom) @@ -21,7 +20,7 @@ As of [Jedis](https://github.com/redis/jedis) version 4.2.0, this library is dep This project contains a Java library abstracting the API of the RedisBloom Redis module, that implements a high performance bloom filter with an easy-to-use API - + See [http://redisbloom.io](http://redisbloom.io) for installation instructions of the module.