From 24c6e6e2cafc54520eb9aebf6fe7191cdc0df8e5 Mon Sep 17 00:00:00 2001 From: igorcoding Date: Wed, 16 Aug 2017 00:10:44 +0300 Subject: [PATCH] installing queue through luarocks on linux --- .ci/travis-before-install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.ci/travis-before-install.sh b/.ci/travis-before-install.sh index f7f2e79..712aa99 100755 --- a/.ci/travis-before-install.sh +++ b/.ci/travis-before-install.sh @@ -10,9 +10,12 @@ if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then echo "deb https://packagecloud.io/tarantool/${TARANTOOL_VERSION}/ubuntu/ $release main" | sudo tee /etc/apt/sources.list.d/tarantool_${TARANTOOL_VERSION}.list echo "deb-src https://packagecloud.io/tarantool/${TARANTOOL_VERSION}/ubuntu/ $release main" | sudo tee -a /etc/apt/sources.list.d/tarantool_${TARANTOOL_VERSION}.list sudo apt-get -qq update - sudo apt-get -y install tarantool tarantool-queue + sudo apt-get -y install tarantool sudo tarantoolctl stop example || exit 0 sudo apt-get install pandoc + sudo apt-get install lua5.1 luarocks + sudo luarocks install https://raw.githubusercontent.com/tarantool/rocks/gh-pages/queue-scm-1.rockspec + elif [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then if [[ "${TARANTOOL_VERSION}" == "1_7" ]]; then brew install tarantool --HEAD