Skip to content

Commit

Permalink
improve performance of CH setup in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdans committed Mar 16, 2019
1 parent 2026297 commit ad83b9f
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,10 @@ jobs:
- run:
name: Install ClickHouse
command: |
sudo apt-get update
sudo apt-get install software-properties-common
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4
echo "deb http://repo.yandex.ru/clickhouse/deb/stable/ main/" | sudo tee /etc/apt/sources.list.d/clickhouse.list
sudo apt-get update
sudo apt-get install clickhouse-server-common -y
sudo apt-get install clickhouse-client -y
sudo apt-get install -y software-properties-common clickhouse-server-common clickhouse-client
sudo sed -e "/<listen_host>::1<\/listen_host>/d" -i /etc/clickhouse-server/config.xml
sudo service clickhouse-server start
Expand Down Expand Up @@ -64,13 +61,10 @@ jobs:
- run:
name: Install ClickHouse
command: |
sudo apt-get update
sudo apt-get install software-properties-common
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4
echo "deb http://repo.yandex.ru/clickhouse/deb/stable/ main/" | sudo tee /etc/apt/sources.list.d/clickhouse.list
sudo apt-get update
sudo apt-get install clickhouse-server-common -y
sudo apt-get install clickhouse-client -y
sudo apt-get install -y software-properties-common clickhouse-server-common clickhouse-client
sudo sed -e "/<listen_host>::1<\/listen_host>/d" -i /etc/clickhouse-server/config.xml
sudo service clickhouse-server start
Expand Down Expand Up @@ -108,13 +102,10 @@ jobs:
- run:
name: Install ClickHouse
command: |
sudo apt-get update
sudo apt-get install software-properties-common
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4
echo "deb http://repo.yandex.ru/clickhouse/deb/stable/ main/" | sudo tee /etc/apt/sources.list.d/clickhouse.list
sudo apt-get update
sudo apt-get install clickhouse-server-common -y
sudo apt-get install clickhouse-client -y
sudo apt-get install -y software-properties-common clickhouse-server-common clickhouse-client
sudo sed -e "/<listen_host>::1<\/listen_host>/d" -i /etc/clickhouse-server/config.xml
sudo service clickhouse-server start
- run:
Expand Down

0 comments on commit ad83b9f

Please sign in to comment.