travis: scylla update to 2.1

This commit is contained in:
Michał Matczuk
2018-05-22 15:15:55 +02:00
parent 7999b5dd4e
commit 444d07da6a
2 changed files with 3 additions and 4 deletions

View File

@@ -4,8 +4,7 @@ go:
env: env:
global: global:
- SCYLLA_OPTS="--network-stack posix --enable-in-memory-data-store 1 --developer-mode 1" - SCYLLA_OPTS="--developer-mode 1 --enable-in-memory-data-store 1 --log-to-stdout 1 --default-log-level info"
- SCYLLA_OPTS_LOG="--log-to-stdout 1 --default-log-level info"
matrix: matrix:
- DB="scylla" - DB="scylla"
- DB="cassandra" - DB="cassandra"

View File

@@ -4,10 +4,10 @@ set -e
case ${DB} in case ${DB} in
scylla) scylla)
echo "deb [arch=amd64] http://s3.amazonaws.com/downloads.scylladb.com/deb/ubuntu trusty scylladb-1.7/multiverse" | sudo tee -a /etc/apt/sources.list > /dev/null sudo curl -o /etc/apt/sources.list.d/scylla.list -L http://repositories.scylladb.com/scylla/repo/20fc70b18261bf832cf8e0733a27979c/ubuntu/scylladb-2.1-trusty.list
sudo apt-get -qq update sudo apt-get -qq update
sudo apt-get install -y --allow-unauthenticated scylla-server sudo apt-get install -y --allow-unauthenticated scylla-server
sudo /usr/bin/scylla --options-file /etc/scylla/scylla.yaml ${SCYLLA_OPTS} ${SCYLLA_OPTS_LOG} & sudo /usr/bin/scylla --options-file /etc/scylla/scylla.yaml ${SCYLLA_OPTS} &
;; ;;
cassandra) cassandra)