File tree Expand file tree Collapse file tree 6 files changed +65
-202
lines changed Expand file tree Collapse file tree 6 files changed +65
-202
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Continuous Integration
2
+ on :
3
+ push :
4
+ paths-ignore :
5
+ - ' doc/**'
6
+ - ' **/*.md'
7
+ branches :
8
+ - master
9
+ - ' [0-9].*'
10
+ pull_request :
11
+ branches :
12
+ - master
13
+ - ' [0-9].*'
14
+ schedule :
15
+ - cron : ' 0 1 * * *' # nightly build
16
+ workflow_dispatch :
17
+
18
+ jobs :
19
+
20
+ build :
21
+ name : Build and Test
22
+ runs-on : ubuntu-latest
23
+ steps :
24
+ - name : Checkout project
25
+ uses : actions/checkout@v4
26
+ - name : Set Java up in the runner
27
+ uses : actions/setup-java@v4
28
+ with :
29
+ java-version : ' 8'
30
+ distribution : ' temurin'
31
+ cache : ' maven'
32
+ - name : Setup Maven
33
+
34
+ with :
35
+ java-version : 8
36
+ - name : Install missing dependencies to container
37
+ run : |
38
+ sudo apt update
39
+ sudo apt install -y libssl-dev
40
+ wget http://download.redis.io/releases/redis-6.0.10.tar.gz
41
+ tar -xzvf redis-6.0.10.tar.gz
42
+ make -C redis-6.0.10 -j`nproc` BUILD_TLS=yes
43
+ - name : Maven offline
44
+ run : |
45
+ mvn -q dependency:go-offline
46
+ - name : Run tests
47
+ run : |
48
+ export PATH=$PWD/redis-6.0.10/src:$PATH
49
+ make test
50
+ env :
51
+ JVM_OPTS : -Xmx3200m
52
+ TERM : dumb
53
+ - name : Upload coverage reports to Codecov
54
+
55
+ with :
56
+ token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -33,11 +33,13 @@ src_managed/
33
33
project /boot /
34
34
project /plugins /project /
35
35
build /* .jar
36
+ checkpoint-test /
36
37
37
38
# eclipse
38
39
.project
39
40
.classpath
40
41
/.settings /
41
42
42
43
# Redis
43
- dump.rdb
44
+ dump.rdb
45
+ .DS_Store
Original file line number Diff line number Diff line change
1
+ [ ![ Integration] ( https://github.com/RedisLabs/spark-redis/actions/workflows/integration.yml/badge.svg?branch=master )] ( https://github.com/RedisLabs/spark-redis/actions/workflows/integration.yml )
1
2
[ ![ license] ( https://img.shields.io/github/license/RedisLabs/spark-redis.svg )] ( https://github.com/RedisLabs/spark-redis )
2
3
[ ![ Release] ( https://img.shields.io/github/release/RedisLabs/spark-redis.svg?sort=semver )] ( https://github.com/RedisLabs/spark-redis/releases/latest )
3
- [ ![ CircleCI] ( https://circleci.com/gh/RedisLabs/spark-redis/tree/master.svg?style=svg )] ( https://circleci.com/gh/RedisLabs/spark-redis/tree/master )
4
- [ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/com.redislabs/spark-redis_2.12/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/com.redislabs/spark-redis_2.12 )
4
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/com.redislabs/spark-redis_2.12?logo=redis )] ( https://maven-badges.herokuapp.com/maven-central/com.redislabs/spark-redis_2.12 )
5
5
[ ![ Javadocs] ( https://www.javadoc.io/badge/com.redislabs/spark-redis_2.12.svg )] ( https://www.javadoc.io/doc/com.redislabs/spark-redis_2.12 )
6
- [ ![ Discord] ( https://img.shields.io/discord/697882427875393627?style=flat-square )] ( https://discord.gg/Bjt6TcgV )
7
6
[ ![ Codecov] ( https://codecov.io/gh/RedisLabs/spark-redis/branch/master/graph/badge.svg )] ( https://codecov.io/gh/RedisLabs/spark-redis )
8
7
8
+ [ ![ Discord] ( https://img.shields.io/discord/697882427875393627.svg?style=social&logo=discord )] ( https://discord.gg/redis )
9
+ [ ![ Twitch] ( https://img.shields.io/twitch/status/redisinc?style=social )] ( https://www.twitch.tv/redisinc )
10
+ [ ![ YouTube] ( https://img.shields.io/youtube/channel/views/UCD78lHSwYqMlyetR0_P4Vig?style=social )] ( https://www.youtube.com/redisinc )
11
+ [ ![ Twitter] ( https://img.shields.io/twitter/follow/redisinc?style=social )] ( https://twitter.com/redisinc )
9
12
# Spark-Redis
10
13
A library for reading and writing data in [ Redis] ( http://redis.io ) using [ Apache Spark] ( http://spark.apache.org/ ) .
11
14
Original file line number Diff line number Diff line change 12
12
<name >RedisLabs</name >
13
13
<url >www.redislabs.com</url >
14
14
</organization >
15
- <ciManagement >
16
- <system >CircleCI</system >
17
- <url >https://circleci.com/gh/RedisLabs/spark-redis</url >
18
- </ciManagement >
19
15
<issueManagement >
20
16
<url >https://github.com/RedisLabs/spark-redis/issues</url >
21
17
<system >Github</system >
You can’t perform that action at this time.
0 commit comments