How to use Clickhouse with Travis?

I wanna add travis to my repository, i used clickhouse as database, normally i can add postgresql and others like this,

services: 
  - postgresql

So i searched for clickhouse in documentation of Travis, but i couldn’t find anything in guide, but it also says

This guide covers setting up the most popular databases and other services in the Travis CI environment.

So are there any workarounds for this or should i run with Docker? Thinking Docker is the way to go.

You don’t need to use Docker, Travis supports Clickhouse. You can use Clickhouse via:

services:
  - clickhouse

Add that line into your .travis.yml file, and you’ll be able to use Clickhouse.

2 Likes

whoa, did not know this! thank you @Montana

-SU
Norway

Yep, no problem.