We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa3a6fe commit 7c0ae87Copy full SHA for 7c0ae87
.github/workflows/ci.yml
@@ -35,8 +35,7 @@ jobs:
35
phpize
36
./configure --enable-redis-lzf --enable-redis-zstd --enable-redis-igbinary --enable-redis-msgpack --enable-redis-lz4 --with-liblz4
37
sudo make install
38
- sudo mkdir -p /etc/php/${{ matrix.php }}/cli/conf.d
39
- echo 'extension = redis.so' | sudo tee -a /etc/php/${{ matrix.php }}/cli/conf.d/90-redis.ini
+ echo 'extension = redis.so' | sudo tee -a $(php --ini | grep 'Scan for additional .ini files' | awk '{print $7}')/90-redis.ini
40
- name: Start redis
41
run: |
42
redis-cli SHUTDOWN NOSAVE
0 commit comments