-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
311 lines (286 loc) · 10.9 KB
/
ci.yml
File metadata and controls
311 lines (286 loc) · 10.9 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
on: [push, pull_request]
jobs:
configured-deps:
runs-on: ubuntu-latest
continue-on-error: false
strategy:
fail-fast: true
matrix:
php: ['8.3']
steps:
- name: Checkout PhpRedis
uses: actions/checkout@v4
- name: Install liblzf
run: |
git clone --depth=1 https://github.com/nemequ/liblzf.git
cd liblzf
autoreconf -vi
CFLAGS=-fPIC ./configure --prefix="$GITHUB_WORKSPACE/liblzf"
make install
- name: Install liblz4
run: |
git clone -b v1.9.4 --depth=1 https://github.com/lz4/lz4
cd lz4/lib
PREFIX="$GITHUB_WORKSPACE/liblz4" make install
- name: Install libzstd
run: |
git clone -b v1.5.5 --depth=1 https://github.com/facebook/zstd
cd zstd
PREFIX="$GITHUB_WORKSPACE/libzstd" make install
- name: Install PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, igbinary, msgpack, :redis
coverage: none
tools: none
- name: Configure and build PhpRedis with distinct dep paths
run: |
phpize
./configure \
--enable-redis-lz4 \
--with-liblz4="$GITHUB_WORKSPACE/liblz4" \
--enable-redis-lzf \
--with-liblzf="$GITHUB_WORKSPACE/liblzf" \
--enable-redis-zstd \
--with-libzstd="$GITHUB_WORKSPACE/libzstd"
sudo make -j"$(nproc)"
- name: Make sure we're linking against specific liblz4
run: |
grep "INCLUDES.*$GITHUB_WORKSPACE/liblz4" Makefile
grep "REDIS_SHARED_LIBADD.*-L$GITHUB_WORKSPACE/liblz4" Makefile
- name: Make sure we're linking against specific liblzf
run: |
grep "INCLUDES.*$GITHUB_WORKSPACE/liblzf" Makefile
grep "REDIS_SHARED_LIBADD.*-L$GITHUB_WORKSPACE/liblzf" Makefile
- name: Make sure we're linking against specific libzstd
run: |
grep "INCLUDES.*$GITHUB_WORKSPACE/libzstd" Makefile
grep "REDIS_SHARED_LIBADD.*-L$GITHUB_WORKSPACE/libzstd" Makefile
ubuntu:
runs-on: ubuntu-22.04
continue-on-error: false
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
server: ['redis', 'keydb', 'valkey']
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, igbinary, msgpack, :redis
coverage: none
tools: none
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install valgrind libzstd-dev liblz4-dev libssl-dev
- name: Install Redis
if: matrix.server == 'redis'
env:
REDIS_PPA_URI: "packages.redis.io/deb"
REDIS_PPA_KEY: "packages.redis.io/gpg"
run: |
echo "deb https://$REDIS_PPA_URI $(lsb_release -cs) main" | \
sudo tee /etc/apt/sources.list.d/redis.list
curl -fsSL "https://$REDIS_PPA_KEY" | \
sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/redis.gpg
sudo apt-get update
sudo apt-get install redis
- name: Install KeyDB
if: matrix.server == 'keydb'
env:
KEYDB_PPA_URI: "download.keydb.dev/open-source-dist"
KEYDB_PPA_KEY: "download.keydb.dev/open-source-dist/keyring.gpg"
run: |
echo "deb https://$KEYDB_PPA_URI $(lsb_release -sc) main" | \
sudo tee /etc/apt/sources.list.d/keydb.list
sudo wget -O /etc/apt/trusted.gpg.d/keydb.gpg "https://$KEYDB_PPA_KEY"
sudo apt-get update
sudo apt-get install keydb
- name: Install ValKey
if: matrix.server == 'valkey'
run: |
git clone --depth 1 --branch 8.1.3 https://github.com/valkey-io/valkey.git
cd valkey && BUILD_TLS=yes sudo make install
- name: Build phpredis
run: |
phpize
./configure \
--enable-redis-lzf \
--enable-redis-zstd \
--enable-redis-igbinary \
--enable-redis-msgpack \
--enable-redis-lz4 \
--with-liblz4
sudo make -j"$(nproc)" install
echo 'extension = redis.so' | sudo tee -a "$(php-config --ini-dir)"/90-redis.ini
- name: Attempt to shutdown default server
run: ${{ matrix.server }}-cli SHUTDOWN NOSAVE || true
- name: Start ${{ matrix.server }}-server
run: |
for PORT in {6379..6382} {32767..32769}; do
${{ matrix.server }}-server \
--port "$PORT" \
--daemonize yes \
--aclfile tests/users.acl \
--acl-pubsub-default allchannels
done
${{ matrix.server }}-server \
--port 0 \
--unixsocket /tmp/redis.sock \
--daemonize yes \
--aclfile tests/users.acl \
--acl-pubsub-default allchannels
- name: Start ${{ matrix.server }} cluster
run: |
mkdir -p tests/nodes
echo -n > tests/nodes/nodemap
for PORT in {7000..7005}; do
${{ matrix.server }}-server \
--port "$PORT" \
--cluster-enabled yes \
--cluster-config-file "$PORT".conf \
--daemonize yes \
--aclfile tests/users.acl \
--acl-pubsub-default allchannels
echo 127.0.0.1:"$PORT" >> tests/nodes/nodemap
done
- name: Start ${{ matrix.server }} sentinel
run: |
wget raw.githubusercontent.com/redis/redis/7.0/sentinel.conf
for PORT in {26379..26380}; do
cp sentinel.conf "$PORT.conf"
sed -i '/^sentinel/Id' "$PORT.conf"
${{ matrix.server }}-server "$PORT.conf" \
--port "$PORT" \
--daemonize yes \
--sentinel monitor mymaster 127.0.0.1 6379 1 \
--sentinel auth-pass mymaster phpredis
done
- name: Wait for ${{ matrix.server }} instances
run: |
for PORT in {6379..6382} {7000..7005} {32767..32768} {26379..26380}; do
until echo PING | ${{ matrix.server }}-cli -p "$PORT" 2>&1 | grep -qE 'PONG|NOAUTH'; do
echo "Still waiting for ${{ matrix.server }} on port $PORT"
sleep .5
done
done
until echo PING | ${{ matrix.server }}-cli -s /tmp/redis.sock 2>&1 | grep -qE 'PONG|NOAUTH'; do
echo "Still waiting for ${{ matrix.server }} at /tmp/redis.sock"
sleep .5
done
- name: Initialize ${{ matrix.server }} cluster
run: |
echo yes | ${{ matrix.server }}-cli --cluster create 127.0.0.1:{7000..7005} \
--cluster-replicas 1 --user phpredis -a phpredis
- name: Run tests
run: |
php tests/TestRedis.php --class Redis --user phpredis --auth phpredis
php tests/TestRedis.php --class RedisArray --user phpredis --auth phpredis
php tests/TestRedis.php --class RedisCluster --user phpredis --auth phpredis
php tests/TestRedis.php --class RedisSentinel --auth phpredis
env:
TEST_PHP_ARGS: -e
- name: Run tests using valgrind
continue-on-error: true
run: |
valgrind --suppressions=tests/vg.supp --error-exitcode=1 \
php tests/TestRedis.php --class Redis --user phpredis --auth phpredis
valgrind --suppressions=tests/vg.supp --error-exitcode=1 \
php tests/TestRedis.php --class RedisArray --user phpredis --auth phpredis
valgrind --suppressions=tests/vg.supp --error-exitcode=1 \
php tests/TestRedis.php --class RedisCluster --user phpredis --auth phpredis
valgrind --suppressions=tests/vg.supp --error-exitcode=1 \
php tests/TestRedis.php --class RedisSentinel --auth phpredis
env:
TEST_PHP_ARGS: -e
USE_ZEND_ALLOC: 0
macos:
runs-on: macos-latest
continue-on-error: false
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Install PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, :redis
coverage: none
tools: none
- name: Install dependencies
run: |
pecl install igbinary
pecl install msgpack
- name: Build phpredis
run: |
phpize
./configure --enable-redis-lzf --enable-redis-zstd --enable-redis-igbinary --enable-redis-msgpack --enable-redis-lz4 --with-liblz4
sudo make install
sudo mkdir -p "$(php-config --ini-dir)"
echo 'extension = redis.so' | sudo tee -a "$(php-config --ini-dir)/90-redis.ini"
windows:
runs-on: windows-2022
continue-on-error: false
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
ts: [nts, ts]
steps:
- name: Checkout
uses: actions/checkout@v5
with:
submodules: true
- name: Build phpredis
uses: php/php-windows-builder/extension@v1
with:
arch: x64
php-version: ${{ matrix.php }}
ts: ${{ matrix.ts }}
run-tests: false
pecl:
runs-on: ubuntu-latest
container: php:8.3-cli-alpine
steps:
- name: Install required system packages
run: apk add --update $PHPIZE_DEPS zstd-libs zstd-dev git
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Create temporary directory
id: temp-dir
run: printf "path=%s\n" "$(mktemp -d)" >>"$GITHUB_OUTPUT"
- name: Create package
run: |
cd "${{ steps.temp-dir.outputs.path }}"
pecl package "$GITHUB_WORKSPACE/package.xml"
- name: Compile package
run: printf '' | pecl install ${{ steps.temp-dir.outputs.path }}/redis-*.tgz
- name: Enable extension
run: docker-php-ext-enable redis
- name: Check for PHP startup warnings
run: |
php -d display_errors=stderr -d display_startup_errors=1 -d error_reporting=-1 -r ';' 2>/tmp/php-startup-warnings
if [ -s /tmp/php-startup-warnings ]; then
echo 'The PHP extension was successfully installed, but PHP raised these warnings:' >&2
cat /tmp/php-startup-warnings >&2
exit 1
fi
echo "PHP didn't raise any warnings at startup."
- name: Inspect extension
run: php --ri redis