From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp36.i.mail.ru (smtp36.i.mail.ru [94.100.177.96]) (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 3B20E4696C3 for ; Fri, 1 May 2020 08:14:42 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Fri, 1 May 2020 08:14:39 +0300 Message-Id: <70e76822e46b4ef61afe6331fd4bc377840d4126.1588309947.git.avtikhon@tarantool.org> Subject: [Tarantool-patches] [PATCH v1] gitlab-ci: add Ubuntu Focal to S3 list List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Oleg Piskunov , Sergey Bronnikov Cc: tarantool-patches@dev.tarantool.org Found that in commit 'travis-ci/gitlab-ci: add Ubuntu Focal 20.04' forgot to add Ubuntu Focal to the list of the available Ubuntu distributions in the script for saving built packages at S3. Follow up #4863 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/add-focal-to-list Issue: https://github.com/tarantool/tarantool/issues/4863 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 f7ac0eb6d..239f74a73 100755 --- a/tools/update_repo.sh +++ b/tools/update_repo.sh @@ -24,7 +24,7 @@ function get_os_dists { alldists= if [ "$os" == "ubuntu" ]; then - alldists='trusty xenial bionic disco eoan' + alldists='trusty xenial bionic disco eoan focal' elif [ "$os" == "debian" ]; then alldists='jessie stretch buster' elif [ "$os" == "el" ]; then -- 2.17.1