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 01df424 commit bf22bc5Copy full SHA for bf22bc5
.circleci/config.yml
@@ -26,12 +26,8 @@ jobs:
26
- run:
27
name: Install Redis Extension
28
command: |
29
- sudo apt-get update
30
- sudo apt-get install -y php-dev php-pear
31
- sudo pecl install redis
32
- INI_FILE=$(php --ini | grep "Loaded Configuration" | sed -E "s|.*:\s*||")
33
- echo "extension=redis.so" | sudo tee -a $INI_FILE
34
- php -m | grep redis || (echo "Redis extension not loaded" && exit 1)
+ yes 'no' | sudo pecl install -f redis || true
+ sudo docker-php-ext-enable redis.so
35
#- run:
36
# name: Update Composer
37
# command: sudo composer self-update
0 commit comments