-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (44 loc) · 1.42 KB
/
5.0.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: 5.0
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-with-redis-5-0:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: clone and build redis
run: |
sudo apt-get install git
git clone https://github.com/redis/redis
cd redis
git checkout 5.0
make -j
- name: start redis
run: |
./redis/src/redis-server &
- name: start redis cluster
run: |
cd redis/utils/create-cluster
./create-cluster start
echo yes|./create-cluster create
- name: set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: install requirements
run: pip install -r requirements.txt
- name: run test
run: python resp_compatibility.py --testfile cts.json --specific-version 5.0.0 --show-failed > test.result
- name: check fail tests
run: |
cat test.result
grep -q "This is failed tests for" test.result && exit -1 || exit 0
- name: run cluster test
run: python resp_compatibility.py --testfile cts.json --port 30001 --specific-version 5.0.0 --cluster --show-failed > cluster.result
- name: check cluster fail tests
run: |
cat cluster.result
grep -q "This is failed tests for" cluster.result && exit -1 || exit 0