From c1f72aeb7657a95cbce94f700ab432ba16cecb92 Mon Sep 17 00:00:00 2001 From: "Alexander V. Tikhonov" <avtikhon@tarantool.org> Date: Wed, 2 Sep 2020 13:39:09 +0300 Subject: [PATCH] gitlab-ci: save sources to new S3 location Changed S3 location for sources tarballs. Also added ability to create S3 directory for the tarballs if it was not existed. --- .gitlab.mk | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitlab.mk b/.gitlab.mk index 1b3ffddcc2..0ab8966234 100644 --- a/.gitlab.mk +++ b/.gitlab.mk @@ -108,6 +108,7 @@ GIT_DESCRIBE=$(shell git describe HEAD) MAJOR_VERSION=$(word 1,$(subst ., ,$(GIT_DESCRIBE))) MINOR_VERSION=$(word 2,$(subst ., ,$(GIT_DESCRIBE))) BUCKET="$(MAJOR_VERSION).$(MINOR_VERSION)" +S3_BUCKET_URL="s3://tarantool_repo/sources/$(BUCKET)" deploy_prepare: [ -d packpack ] || \ @@ -130,8 +131,13 @@ source: deploy_prepare TARBALL_COMPRESSOR=gz packpack/packpack tarball source_deploy: source - aws --endpoint-url "${AWS_S3_ENDPOINT_URL}" s3 cp build/*.tar.gz \ - "s3://tarantool.${BUCKET}.src/" --acl public-read + ( aws --endpoint-url "${AWS_S3_ENDPOINT_URL}" s3 ls "${S3_BUCKET_URL}/" || \ + ( rm -rf "${BUCKET}" ; mkdir "${BUCKET}" && \ + aws --endpoint-url "${AWS_S3_ENDPOINT_URL}" \ + s3 mv "${BUCKET}" "${S3_BUCKET_URL}" --recursive \ + --acl public-read ) ) && \ + aws --endpoint-url "${AWS_S3_ENDPOINT_URL}" \ + s3 cp build/*.tar.gz "${S3_BUCKET_URL}/" --acl public-read # ################### # Performance testing -- GitLab