From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (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 05DBE430D56 for ; Thu, 7 Nov 2019 14:13:47 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Thu, 7 Nov 2019 14:13:46 +0300 Message-Id: Subject: [Tarantool-patches] [PATCH v1] gitlab-ci: cleanup submodules List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Turenko Cc: tarantool-patches@freelists.org, tarantool-patches@dev.tarantool.org Found that durring runs on Gitlab-CI workspaces some extra files from tests from the submodules like src/lib/small/* leaves in subdirectories, which produce warning messages at the Gitlab-CI run log, to avoid of it the submodules cleanup it needed before each Gitlab-CI job. Closes #4258 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-4258-clean-ws-full-ci Issue: https://github.com/tarantool/tarantool/issues/4258 .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 04bb4b1cc..91326b218 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,6 +4,9 @@ stages: variables: GITLAB_MAKE: "make -f .gitlab.mk" +before_script: + - git submodule foreach git clean -xfd + # Jobs templates .release_only_template: &release_only_definition -- 2.17.1