From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp44.i.mail.ru (smtp44.i.mail.ru [94.100.177.104]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 2CD9B41C5DB for ; Tue, 30 Jun 2020 14:01:52 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Tue, 30 Jun 2020 14:01:50 +0300 Message-Id: Subject: [Tarantool-patches] [PATCH v2] gitlab-ci: add TPC-H perf testing List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin , Alexander Turenko Cc: Oleg Piskunov , tarantool-patches@dev.tarantool.org From: Oleg Piskunov Added TPC-H into perf testing pipeline. Set sh2 test server for TPC-H testing. Set to keep raw SQLite results into artifacts. Closes #5010 --- Github: https://github.com/tarantool/tarantool/tree/opiskunov/gh-5010-add-tpch-perf Issue: https://github.com/tarantool/tarantool/issues/5010 .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 65b2fb126..8963bf87c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -211,6 +211,21 @@ perf_bootstrap: # Testing part +perf_tpch: + <<: *perf_docker_test_definition + tags: + - docker_sh2_perf + image: ${IMAGE_PERF_BUILT}_tpch + variables: + <<: *perf_vars_definition + BENCH: 'tpch' + artifacts: + when: always + paths: + - "bench-*.csv" + - "*_t_version.txt" + - "*_result.txt" + perf_sysbench: <<: *perf_docker_test_definition tags: -- 2.17.1