From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp33.i.mail.ru (smtp33.i.mail.ru [94.100.177.93]) (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 29D2A4429E1 for ; Sat, 27 Jun 2020 13:16:07 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Sat, 27 Jun 2020 13:16:04 +0300 Message-Id: <99f015cfe6342f815790596c5431f05663e619f6.1593252865.git.avtikhon@tarantool.org> Subject: [Tarantool-patches] [PATCH v1] Correct cleanup gitlab-ci for perf jobs List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin , Alexander Turenko Cc: tarantool-patches@dev.tarantool.org Found that some perf jobs were forgot to be updated with local cleanup routine as was done for the other jobs at commit: 892a188bc56dc7052bcbe082607a83aa73f28c5b "Correct cleanup gitlab-ci" Follows up #5036 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/gitlab-ci-perf-cleanup Issue: https://github.com/tarantool/tarantool/issues/5036 .gitlab-ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 65b2fb126..6cf1aab3d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -118,10 +118,11 @@ variables: - ${GITLAB_MAKE} perf_run .perf_cleanup_definition: &perf_cleanup_definition - <<: *perf_only_definition - stage: cleanup - script: - - ${GITLAB_MAKE} perf_cleanup + <<: *perf_only_definition + stage: cleanup + <<: *shell_cleanup_script + script: + - ${GITLAB_MAKE} perf_cleanup # Tests @@ -204,6 +205,7 @@ perf_bootstrap: stage: test tags: - deploy + <<: *shell_cleanup_script script: - ${GITLAB_MAKE} perf_prepare after_script: -- 2.17.1