Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2020-06-26 19:41:47 +0300
committermichael-grunder <michael.grunder@gmail.com>2020-06-26 19:41:47 +0300
commit3ba3f06d51ff126eb51dd697381c0e56b38bbcf3 (patch)
treebdf21b64e3dcd19336f689cd43c61139f73ebfd4
parentdf398cb07cd10d870c6805d5834703dc39590b0f (diff)
Attempt to run LZ4 tests in Travis
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 4520a6d8..c1eb5f53 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,11 +30,13 @@ addons:
packages:
- clang
- libzstd1-dev
+ - liblz4-dev
+ - pkg-config
- valgrind
- stunnel
before_install:
- phpize
- - CFGARGS="--enable-redis-lzf --enable-redis-zstd"
+ - CFGARGS="--enable-redis-lzf --enable-redis-zstd --enable-redis-lz4 --with-liblz4"
- pecl install igbinary && CFGARGS="$CFGARGS --enable-redis-igbinary"
- pecl install msgpack && CFGARGS="$CFGARGS --enable-redis-msgpack"
- ./configure $CFGARGS