From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng2.m.smailru.net (smtpng2.m.smailru.net [94.100.179.3]) (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 8E461469719 for ; Wed, 16 Sep 2020 10:07:52 +0300 (MSK) From: sergeyb@tarantool.org Date: Wed, 16 Sep 2020 10:07:18 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 0/4] Integrate Jepsen tests to CI List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tarantool-patches@dev.tarantool.org, avtikhon@tarantool.org, alexander.turenko@tarantool.org From: Sergey Bronnikov Patch series adds Terraform configs to setup test stand in a cloud infrastructure, script to run Jepsen tests, separate targets to Makefile. Issue: https://github.com/tarantool/tarantool/issues/5277 CI: https://gitlab.com/tarantool/tarantool/-/pipelines/190225147 Sergey Bronnikov (4): extra: add Terraform config files cmake: add targets to run Jepsen tests tools: add script to run Jepsen tests ci: integrate Jepsen tests to GitLab CI .gitlab-ci.yml | 14 +++++++ .travis.mk | 34 ++++++++++++++++- CMakeLists.txt | 27 ++++++++++++++ extra/tf/main.tf | 43 ++++++++++++++++++++++ extra/tf/outputs.tf | 10 +++++ extra/tf/provider.tf | 49 +++++++++++++++++++++++++ extra/tf/versions.tf | 8 ++++ tools/run-jepsen-tests.sh | 77 +++++++++++++++++++++++++++++++++++++++ 8 files changed, 261 insertions(+), 1 deletion(-) create mode 100644 extra/tf/main.tf create mode 100644 extra/tf/outputs.tf create mode 100644 extra/tf/provider.tf create mode 100644 extra/tf/versions.tf create mode 100755 tools/run-jepsen-tests.sh -- 2.25.1