You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/clickhouse-cpp/.travis.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -35,20 +35,20 @@ matrix:
35
35
- MATRIX_EVAL="CC=clang-6.0 && CXX=clang++-6.0"
36
36
37
37
- os: osx
38
-
osx_image: xcode8.2
38
+
osx_image: xcode9.4
39
39
compiler: clang
40
40
41
41
before_install:
42
42
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo 'deb http://repo.yandex.ru/clickhouse/deb/stable main/' | sudo tee /etc/apt/sources.list.d/clickhouse.list ; fi
43
43
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 ; fi
44
-
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -q && sudo apt-get install -q -y clickhouse-server-common ; fi
44
+
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update -q && sudo apt-get install -q -y --allow-unauthenticated clickhouse-server-common ; fi
45
45
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo service clickhouse-server start ; fi
46
46
47
47
# Build steps
48
48
script:
49
49
- eval "${MATRIX_EVAL}"
50
50
- mkdir build
51
51
- cd build
52
-
- cmake .. && make
52
+
- cmake .. -DBUILD_TESTS=ON && make
53
53
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./ut/clickhouse-cpp-ut ; fi
54
-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./ut/clickhouse-cpp-ut --gtest_filter='-Client/*' ; fi
54
+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./ut/clickhouse-cpp-ut --gtest_filter=-"Client/*:*Performance*" ; fi
Copy file name to clipboardExpand all lines: src/clickhouse-cpp/README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
ClickHouse C++ client [](https://travis-ci.org/artpaul/clickhouse-cpp)
1
+
ClickHouse C++ client [](https://travis-ci.org/ClickHouse/clickhouse-cpp)
2
2
=====
3
3
4
4
C++ client for [Yandex ClickHouse](https://clickhouse.yandex/)
@@ -7,11 +7,12 @@ C++ client for [Yandex ClickHouse](https://clickhouse.yandex/)
7
7
8
8
* Array(T)
9
9
* Date
10
-
* DateTime
10
+
* DateTime, DateTime64
11
11
* Decimal32, Decimal64, Decimal128
12
12
* Enum8, Enum16
13
13
* FixedString(N)
14
14
* Float32, Float64
15
+
* IPv4, IPv6
15
16
* Nullable(T)
16
17
* String
17
18
* Tuple
@@ -22,7 +23,7 @@ C++ client for [Yandex ClickHouse](https://clickhouse.yandex/)
0 commit comments