forked from IMSMWU/RClickhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
23 lines (21 loc) · 815 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: r
cache: packages
latex: false
warnings_are_errors: false
matrix:
include:
- os: linux
dist: xenial
sudo: required
before_install:
- echo "deb http://repo.yandex.ru/clickhouse/deb/stable/ main/" | sudo tee -a /etc/apt/sources.list
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E0C56BD4
- sudo apt-get update
- sudo apt-get install clickhouse-client clickhouse-server
before_script:
- sudo sed -i '/<listen_host>::1/d' /etc/clickhouse-server/config.xml # don't listen on localhost
- sudo service clickhouse-server start # not using builtin service directive, so that the steps are executed in the correct order
# faster builds by exploiting the number of cores
env:
global:
- MAKEFLAGS="-j 2"