File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ install:
6868 - echo "memory_limit=2048M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
6969 - php ./bin/fix-symfony-version.php "$SYMFONY_VERSION"
7070 - composer install
71+ - ./bin/install-librdkafka.sh
7172 - if [ "$PREPARE_CONTAINER" = true ]; then docker --version; fi
7273 - if [ "$PREPARE_CONTAINER" = true ]; then docker-compose --version; fi
7374 - if [ "$PREPARE_CONTAINER" = true ]; then bin/dev -b; fi
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ git clone --depth 1 --branch v1.0.0 https://github.com/edenhill/librdkafka.git
3+ cd librdkafka
4+ ./configure
5+ make
6+ sudo make install
Original file line number Diff line number Diff line change 33set -x
44set -e
55
6- docker pull enqueue/dev
76docker-compose run --workdir=" /mqdev" --rm dev ./docker/bin/test.sh $@
You can’t perform that action at this time.
0 commit comments