From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp29.i.mail.ru (smtp29.i.mail.ru [94.100.177.89]) (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 5B95F4765E0 for ; Wed, 23 Dec 2020 19:26:52 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Wed, 23 Dec 2020 19:26:49 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v1] update_repo: add Fedora 32 List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Oleg Koshovetc , Kirill Yukhin Cc: tarantool-patches@dev.tarantool.org Cc: tarantool-patches@dev.tarantool.org It was added Fedora 32 gitlab-ci packaging job in commit: 507c47f7a829581cc53ba3c4bd6a5191d088cdf ("gitlab-ci: add packaging for Fedora 32") but also it had to be enabled in update_repo tool to make able to save packages in S3 buckets. Follows up #4966 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/add-fed32-repo-update Issue: https://github.com/tarantool/tarantool/issues/4966 tools/update_repo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/update_repo.sh b/tools/update_repo.sh index 55d76c8de..edd13b4bc 100755 --- a/tools/update_repo.sh +++ b/tools/update_repo.sh @@ -30,7 +30,7 @@ function get_os_dists { elif [ "$os" == "el" ]; then alldists='6 7 8' elif [ "$os" == "fedora" ]; then - alldists='27 28 29 30 31' + alldists='27 28 29 30 31 32' elif [ "$os" == "opensuse-leap" ]; then alldists='15.0 15.1 15.2' fi -- 2.25.1