@@ -44,16 +44,28 @@ jobs:
44
44
["6.2"]="6.2.17"
45
45
)
46
46
47
+ # Mapping of redis version to stack version
48
+ declare -A redis_stack_version_mapping=(
49
+ ["7.4"]="rs-7.4.0-v3"
50
+ ["7.2"]="rs-7.2.0-v15"
51
+ ["6.2"]="rs-6.2.6-v19"
52
+ )
53
+
47
54
if [[ -v redis_clients_version_mapping[${{ matrix.redis }}] ]]; then
48
55
echo "REDIS_IMAGE_NAME=redislabs/client-libs-test:${redis_clients_version_mapping[${{ matrix.redis }}]}" >> $GITHUB_ENV
56
+ echo "REDIS_STACK_IMAGE_NAME=redislabs/client-libs-test:${redis_stack_version_mapping[${{ matrix.redis }}]}" >> $GITHUB_ENV
49
57
echo "DOCKER_SERVICE=redis-clients" >> $GITHUB_ENV
50
58
51
59
redis_major_version=$(echo "${{ matrix.redis }}" | grep -oP '^\d+')
52
60
53
61
# Some configuration options available since Redis > 7
54
62
if (( redis_major_version < 7 )); then
55
63
echo "REDIS_EXTRA_ARGS="--tls-auth-clients optional --save ''"" >> $GITHUB_ENV
64
+ else
65
+ # Since 8.0 modules are bundled with core
66
+ echo "REDIS_STACK_SERVER_PORT=6379" >> $GITHUB_ENV
56
67
fi
68
+
57
69
else
58
70
echo "REDIS_IMAGE_NAME=redis:${{ matrix.redis }}" >> $GITHUB_ENV
59
71
echo "DOCKER_SERVICE=redis-official" >> $GITHUB_ENV
@@ -69,15 +81,17 @@ jobs:
69
81
services : ${{ env.DOCKER_SERVICE }}
70
82
71
83
- name : Start Redis stack image
84
+ id : stack_infra
72
85
uses :
hoverkraft-tech/[email protected]
73
- if : ${{ matrix.redis == '7.4 ' }}
86
+ if : ${{ matrix.redis >= '6.2' && matrix.redis < '8.0 ' }}
74
87
with :
75
88
compose-file : .github/docker-compose.yml
76
89
services : redis-stack
77
90
78
91
- name : Start Redis cluster image
92
+ id : cluster_infra
79
93
uses :
hoverkraft-tech/[email protected]
80
- if : ${{ matrix.redis == '7.4 ' }}
94
+ if : ${{ matrix.redis > '4.0 ' }}
81
95
with :
82
96
compose-file : .github/docker-compose.yml
83
97
services : redis-cluster
87
101
with :
88
102
php-version : ${{ matrix.php }}
89
103
extensions : relay
90
- coverage : ${{ (matrix.php == '8.1 ' && matrix.redis == '7.4') && 'xdebug' || 'none' }}
104
+ coverage : ${{ (matrix.php == '8.4 ' && matrix.redis == '7.4') && 'xdebug' || 'none' }}
91
105
92
106
- name : Install Composer dependencies
93
107
uses : ramsey/composer-install@v2
@@ -96,43 +110,74 @@ jobs:
96
110
composer-options : ${{ matrix.php == '8.0' && '--ignore-platform-reqs' || '' }}
97
111
98
112
- name : Run tests
99
- if : ${{ matrix.php != '8.1 ' || matrix.redis != '7.4' }}
113
+ if : ${{ matrix.php != '8.4 ' || matrix.redis != '7.4' }}
100
114
run : vendor/bin/phpunit
101
115
102
116
- name : Run tests with coverage
103
- if : ${{ matrix.php == '8.1 ' && matrix.redis == '7.4' }}
104
- run : vendor/bin/phpunit --coverage-clover build/logs/clover-default.xml --coverage-filter ./src
117
+ if : ${{ matrix.php == '8.4 ' && matrix.redis == '7.4' }}
118
+ run : vendor/bin/phpunit --coverage-php build/cov/coverage-predis.cov --coverage-filter ./src
105
119
106
120
- name : Run tests using Relay
107
121
if : ${{ matrix.php != '8.4' && matrix.redis >= '6.2' }}
108
122
run : vendor/bin/phpunit -c phpunit.relay.xml
109
123
110
124
- name : Run tests using Relay with coverage
111
- if : ${{ matrix.php == '8.1 ' && matrix.redis == '7.4' }}
112
- run : vendor/bin/phpunit -c phpunit.relay.xml --coverage-clover build/logs/clover -relay.xml --coverage-filter ./src
125
+ if : ${{ matrix.php == '8.4 ' && matrix.redis == '7.4' }}
126
+ run : vendor/bin/phpunit -c phpunit.relay.xml --coverage-php build/cov/coverage -relay.cov --coverage-filter ./src
113
127
114
128
- name : Run stack tests
115
- if : ${{ matrix.redis == '7.4' }}
129
+ if : ${{ ( matrix.php != '8.4' || matrix. redis != '7.4') && matrix.redis >= '6.2 ' }}
116
130
run : vendor/bin/phpunit --group realm-stack
117
131
132
+ - name : Run stack tests with coverage
133
+ if : ${{ matrix.php == '8.4' && matrix.redis == '7.4' && steps.stack_infra.conclusion == 'success' }}
134
+ run : vendor/bin/phpunit --group realm-stack --coverage-php build/cov/coverage-stack.cov --coverage-filter ./src
135
+ env :
136
+ REDIS_STACK_SERVER_PORT : 6479
137
+
118
138
- name : Run stack tests using Relay
119
- if : ${{ matrix.redis == '7.4' }}
139
+ if : ${{ matrix.php != '8.4' && matrix. redis == '7.4' }}
120
140
run : vendor/bin/phpunit --group realm-stack -c phpunit.relay.xml
121
141
142
+ - name : Run stack tests using Relay with coverage
143
+ if : ${{ matrix.php == '8.4' && matrix.redis == '7.4' }}
144
+ run : vendor/bin/phpunit --group realm-stack -c phpunit.relay.xml --coverage-php build/cov/coverage-stack-relay.cov --coverage-filter ./src
145
+ env :
146
+ REDIS_STACK_SERVER_PORT : 6479
147
+
122
148
- name : Run tests against cluster
123
- if : ${{ matrix.redis == '7.4' }}
149
+ if : ${{ ( matrix.php != '8.4' || matrix. redis != '7.4') && steps.cluster_infra.conclusion == 'success ' }}
124
150
run : |
125
151
vendor/bin/phpunit --group cluster
126
152
153
+ - name : Run tests against cluster with coverage
154
+ if : ${{ matrix.php == '8.4' && matrix.redis == '7.4' && steps.cluster_infra.conclusion == 'success' }}
155
+ run : |
156
+ vendor/bin/phpunit --group cluster --coverage-php build/cov/coverage-cluster.cov --coverage-filter ./src
157
+
127
158
- name : Run tests against cluster using Relay
128
- if : ${{ matrix.redis == '7.4' }}
159
+ if : ${{ matrix.php != '8.4' && matrix. redis == '7.4' }}
129
160
run : |
130
161
vendor/bin/phpunit -c phpunit.relay.xml --group cluster
131
162
163
+ - name : Merge coverage reports
164
+ if : ${{ matrix.php == '8.4' && matrix.redis == '7.4' }}
165
+ run : php vendor/bin/phpcov merge --clover build/logs/clover.xml build/cov
166
+
132
167
- name : Send coverage to Coveralls
133
- env :
134
- COVERALLS_REPO_TOKEN : ${{ secrets.GITHUB_TOKEN }}
135
- if : ${{ env.COVERALLS_REPO_TOKEN && matrix.php == '8.1' && matrix.redis == '7.4' }}
136
- run : |
137
- wget "https://github.com/php-coveralls/php-coveralls/releases/download/v2.5.3/php-coveralls.phar"
138
- php ./php-coveralls.phar -v
168
+ uses : coverallsapp/github-action@v2
169
+ if : ${{ matrix.php == '8.4' && matrix.redis == '7.4' }}
170
+ with :
171
+ github-token : ${{ secrets.GITHUB_TOKEN }}
172
+ parallel : true
173
+
174
+ finish :
175
+ name : Finish Coverall
176
+ needs : predis
177
+ if : ${{ always() }}
178
+ runs-on : ubuntu-latest
179
+ steps :
180
+ - name : Coveralls Finished
181
+ uses : coverallsapp/github-action@v2
182
+ with :
183
+ parallel-finished : true
0 commit comments