Skip to content

Commit e2e0ef5

Browse files
committed
Fixed path to the sample test program to build
1 parent 9264859 commit e2e0ef5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Diff for: .travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ matrix:
4040

4141
before_install: |
4242
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
43-
set -x
4443
sudo apt-get install apt-transport-https ca-certificates dirmngr
4544
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E0C56BD4
4645
echo "deb https://repo.clickhouse.tech/deb/stable/ main/" | sudo tee \
@@ -59,6 +58,6 @@ script: |
5958
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./ut/clickhouse-cpp-ut ; fi
6059
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./ut/clickhouse-cpp-ut --gtest_filter=-"Client/*:*Performance*" ; fi
6160
# Test clients that do not have absl in the system still can be built
62-
cmake --build . --target install . && cmake --build . --target clean
63-
cd ./tests/simple && mkdir build && cd ./build
61+
cmake --install . && cmake --build . --target clean
62+
cd ../tests/simple && mkdir build && cd ./build
6463
cmake .. -DBUILD_SAMPLE_WITH_INT128=ON -DCMAKE_CXX_STANDARD=17 -DCMAKE_CXX_STANDARD_REQUIRED=ON && cmake --build . --target all

0 commit comments

Comments
 (0)