mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
13 lines
411 B
YAML
13 lines
411 B
YAML
language: c
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
env:
|
|
- BUILDDIR=. TOOL="./configure --zlib-compat"
|
|
- BUILDDIR=../build TOOL="../zlib-ng/configure --zlib-compat"
|
|
- BUILDDIR=. TOOL="./configure --zlib-compat --without-optimizations --without-new-strategies"
|
|
- BUILDDIR=. TOOL="cmake ."
|
|
- BUILDDIR=../build TOOL="cmake ../zlib-ng"
|
|
script: mkdir -p $BUILDDIR && cd $BUILDDIR &&
|
|
$TOOL && make && make test
|